From ceeb06be7d68bbc5799e85e0fc1f9ee830671846 Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 22 May 2026 12:11:56 +0200 Subject: [PATCH] =?UTF-8?q?ship(phys):=20A6.P3=20slice=203=20=E2=80=94=20c?= =?UTF-8?q?ell-resolver=20ping-pong=20CLOSED=20+=20#98=20re-diagnosed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Slice 3 v2 (3e140cf) added point-in cell-stickiness in ResolveCellId's indoor branch. User verification + slice3v2 capture confirms: cell-resolver ping-pong is FULLY CLOSED. Data: - scen2_v2 capture (pre-slice-3): 20+ cell-transit events with rampant ping-pong (0xA9B4014B ↔ 0xA9B4014A ↔ 0xA9B4013F at the cellar boundary, Z stable ~96.4 — same tick re-classification) - slice3v2 capture (post-fix): 1 cell-transit event (login teleport only) — ping-pong fully eliminated Findings: - A6.P2 Finding 3 (cell-resolver sling-out family) CLOSED. - Issue #90 (sphere-overlap stickiness workaround in same function) now redundant; can be removed in A6.P4 after broader visual verification. - Issue #97 (phantom collisions + fall-through on 2nd floor) hypothesis pending: same instability family, likely closed as side-effect of this fix. Re-test on next happy-test session. - Issue #98 (cellar-up stuck) PERSISTS but with NEW DIAGNOSIS. Originally filed as cell-resolver ping-pong (which was true and now fixed), but user verification shows the cellar-up symptom remains with a DIFFERENT root cause: BSP step-physics at the cellar stair TOP. Push-back trace from slice3v2 capture: n=(0, -0.719, 0.695) sloped face (walkable per FloorZ=0.664) delta=(0, 0, 0.75) step-down probe lifts sphere by 0.75m winterp=1.0->0.0 entire walk-interp consumed per tick Player progresses up most of the stairs but blocks at top step where the cellar transitions to the cottage main floor. #98 issue updated with this re-diagnosis. Includes: - scen4_cottage_cellar_slice3 acdream.log (slice 3 v1 evidence; ping-pong already closed by v1's sphere-overlap stickiness, but v1 over-corrected by holding player in cellar during legitimate transitions) - scen4_cottage_cellar_slice3v2 acdream.log (slice 3 v2 evidence; point-in stickiness fixes the over-correction; cellar-up reveals the deeper BSP step-physics bug) Docs updated: - ISSUES.md — #98 re-diagnosed - docs/plans/2026-04-11-roadmap.md — A6.P3 slice 3 marked SHIPPED; slice 4 (or A6.P4) scoped for #98 step-physics investigation - CLAUDE.md — Currently-working-toward block updated Test suite: 1148 pass + 8 pre-existing fail (baseline maintained). Co-Authored-By: Claude Opus 4.7 (1M context) --- CLAUDE.md | 16 +- docs/ISSUES.md | 28 +- docs/plans/2026-04-11-roadmap.md | 33 +- .../scen4_cottage_cellar_slice3/acdream.log | 104949 +++++++++++++++ .../scen4_cottage_cellar_slice3v2/acdream.log | 60161 +++++++++ 5 files changed, 165165 insertions(+), 22 deletions(-) create mode 100644 docs/research/2026-05-21-a6-captures/scen4_cottage_cellar_slice3/acdream.log create mode 100644 docs/research/2026-05-21-a6-captures/scen4_cottage_cellar_slice3v2/acdream.log diff --git a/CLAUDE.md b/CLAUDE.md index 16b4624..f8892bd 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -738,10 +738,18 @@ 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`. +Finding 3 family).** **A6.P3 slice 3 SHIPPED 2026-05-22** (commits `8898166` v1 + +`3e140cf` v2): cell-resolver stickiness added in `ResolveCellId`'s +indoor branch (point-in check against `fallbackCellId`'s CellBSP +before falling through to FindCellList). Data confirms ping-pong is +FULLY CLOSED — scen4 cellar capture shows 1 cell-transit (login +teleport) vs 20+ pre-fix. **#90 workaround now redundant — deferred +to A6.P4 removal. #97 phantom collisions hypothesis pending re-test. +#98 cellar-up symptom PERSISTS with a NEW diagnosis** (re-filed in +#98 as BSP step physics issue at top of cellar stair flight; player +hits sloped step-face, push-back consumes all walk-interp; not +cell-resolver). Current A6 phase: **A6.P3 slice 4 (or A6.P4?) — +investigate #98 BSP step-physics at cellar stair top.** 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 diff --git a/docs/ISSUES.md b/docs/ISSUES.md index 0579cbd..030d3e0 100644 --- a/docs/ISSUES.md +++ b/docs/ISSUES.md @@ -664,12 +664,34 @@ 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) +## #98 — Cellar ascent stuck at top (BSP step physics; NOT cell-resolver) -**Status:** OPEN — **A6.P3 slice 3 target** (Finding 3 family) +**Status:** OPEN — **NEW diagnosis after A6.P3 slice 3 (2026-05-22)** **Severity:** HIGH (blocks M1.5 demo cellar half — user can descend but cannot return) **Filed:** 2026-05-22 -**Component:** physics, cell resolver (ResolveCellId + CheckBuildingTransit) +**Component:** physics, BSP step_up / step_down at cellar stair geometry + +**Diagnosis update 2026-05-22 (post A6.P3 slice 3):** The cell-resolver ping-pong (the original hypothesis when this issue was filed) WAS confirmed and is now FIXED by slice 3 (commits `8898166` v1 + `3e140cf` v2 — point-in stickiness check in `ResolveCellId`). Data confirms: scen4_cottage_cellar_slice3v2 capture shows only 1 cell-transit event (login teleport) vs 20+ pre-fix. + +BUT the cellar-up symptom PERSISTS even with the cell-resolver fix. The remaining cause is a BSP step physics issue at the cellar stair geometry. User report: "I'm running up the stairs, at the top it looks like I'm running into something. Still running animation but not going up." Player can climb most of the stair flight but gets blocked at the TOP step where the cellar transitions to the cottage main floor. + +**Evidence from slice3v2 capture:** +``` +[push-back] site=adjust_sphere in=(*, -0.0752, 0.0077) out=(*, -0.0752, 0.7577) + delta=(0, 0, 0.7500) n=(0, -0.7190, 0.6950) d=-0.1007 + r=0.4800 winterp=1.0000->0.0000 applied=True +``` +- Surface normal `(0, -0.719, 0.695)` — sloped 44° (walkable per FloorZ=0.664) +- Push-back lifts sphere by 0.75m (step_down probe distance) repeatedly +- `winterp 1.0→0.0` — entire walk interpolation consumed by the lift each tick +- Player Z stays stuck around 0.0077 (relative to cell) → not progressing + +**Hypothesis:** the step_down probe at the top of the cellar stair is hitting the sloped TOP step face (or possibly a wall poly), and consuming all walk interp pushing back. No remaining interp to actually walk forward over the top. + +**Related:** +- Inn stairs UP works (different geometry, doesn't trigger this specific failure mode) +- Cellar descent works (only ascent fails — direction matters) +- Issue #90 (cell-id ping-pong workaround in `ResolveCellId`) is now superseded by slice 3 v2's stickiness check; can be removed in A6.P4 after broader visual verification **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. diff --git a/docs/plans/2026-04-11-roadmap.md b/docs/plans/2026-04-11-roadmap.md index e811f82..b58dc93 100644 --- a/docs/plans/2026-04-11-roadmap.md +++ b/docs/plans/2026-04-11-roadmap.md @@ -203,21 +203,24 @@ successfully 2026-04-30 for the steep-roof case. Matching binaries 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. + - **✓ SHIPPED — A6.P3 slice 3 — cell-resolver stickiness** + (2026-05-22, commits `8898166` v1 + `3e140cf` v2). Added + point-in stickiness check at top of `ResolveCellId`'s indoor + branch. Cell-resolver ping-pong FULLY CLOSED (data: scen4 cellar + capture shows 1 cell-transit vs 20+ pre-fix). **Outcomes:** + Finding 3 (cell-resolver instability) closed. #90 workaround + redundant (deferred A6.P4 removal). #97 phantom collisions + hypothesis pending re-test (likely closed too). #98 cellar-up + symptom PERSISTS but with NEW diagnosis (re-filed in #98 as BSP + step-physics at cellar stair top — sloped step-face mis-handling, + NOT cell-resolver). + - **A6.P3 slice 4 (or A6.P4)? — BSP step-physics at cellar + stair top (#98 new diagnosis)** (NEXT or DEFERRED). Investigate + why step-down probe consumes all walk-interp at cellar stair top. + Evidence: scen4 cottage_cellar_slice3v2 push-back trace. May + require reading BSP step_up + step_down decomp + comparing to + cellar stair geometry. Could be its own slice or merged into a + broader A6.P4 cleanup phase. - 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/scen4_cottage_cellar_slice3/acdream.log b/docs/research/2026-05-21-a6-captures/scen4_cottage_cellar_slice3/acdream.log new file mode 100644 index 0000000..3e61cf1 --- /dev/null +++ b/docs/research/2026-05-21-a6-captures/scen4_cottage_cellar_slice3/acdream.log @@ -0,0 +1,104949 @@ +[12:01:47 INF] scanning plugins in C:\Users\erikn\source\repos\acdream\.claude\worktrees\strange-albattani-3fc83c\src\AcDream.App\bin\Debug\net10.0\plugins +[12:01:47 INF] smoke plugin initialized +[12:01:47 INF] loaded plugin acdream.smoke (Smoke Plugin) +[12:01:47 INF] smoke plugin enabled +[12:01:47 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 day5 ? DayGroup[19] "Rainy" (Chance=5.00, 17 objects, 11 keyframes, weather=Overcast) +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=(141.1,7.2,92.7)@0xA9B40147 itemType=0x00000010 animParts=35 texChanges=23 subPalettes=12 +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=0x80000604 name="Ust" setup=0x02000D5C pos=no-pos itemType=0x20000000 animParts=0 texChanges=0 subPalettes=0 +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=0x80000605 name="Letter From Home" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x8000070C name="Hyssop" setup=0x02000181 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=0x800006FC name="Gypsum" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +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=0x800006F8 name="Cadmia" 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=0x80000F1B name="Refurbisher's Tally" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +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=0x800006F4 name="Rowan Talisman" setup=0x02000307 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=0x800006F7 name="Brimstone" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000503 name="Refurbisher's Tally" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +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=0x800006EC name="Blackthorn Talisman" setup=0x02000307 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=0x800005FF name="Pyreal" setup=0x02000B77 pos=no-pos itemType=0x00000040 animParts=0 texChanges=0 subPalettes=0 +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=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=0x80000F1C name="Agent of Arcanum List" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +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=0x800004FC name="Agent of Arcanum List" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +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=0x80000701 name="Verdigris" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000600 name="Sack" setup=0x02000181 pos=no-pos itemType=0x00000200 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=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=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=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=0x80000601 name="Calling Stone" setup=0x02000179 pos=no-pos itemType=0x00000800 animParts=1 texChanges=1 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=0x80001BB7 name="Pathwarden Gauntlets" setup=0x020000D8 pos=no-pos itemType=0x00000002 animParts=1 texChanges=1 subPalettes=1 +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=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=0x7A9B4013 name="Chest" setup=0x0200007C pos=(135.7,9.9,97.0)@0xA9B4014B itemType=0x00000200 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: 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=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=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=0x7A9B4014 name="Chest" setup=0x0200007C pos=(132.5,9.9,97.0)@0xA9B4014B itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +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=0x50000001 name="+Je" setup=0x02000001 pos=(125.8,7.6,97.0)@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=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=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: 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: 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=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: 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=4 fr0=16 1frame=1 partFrames=0 +live: summary recv=100 hydrated=43 drops: noPos=57 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=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=0x800002A1 name="Simi" setup=0x0200013F pos=no-pos itemType=0x00000001 animParts=1 texChanges=3 subPalettes=1 +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 +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 -> 0xA9B40147 pos=(141.108,7.226,92.738) 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] MovementTurnRight Press +[input] MovementForward Press +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.8025) mvmt=(-0.0573,0.4153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,6.810,93.218) lpos=(-10.665,4.690,-0.802) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8402,0.5415,0.8227) mvmt=(-0.0573,0.4153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,0.3015,0.7177) mvmt=(-0.0573,0.4153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.8025) mvmt=(-0.0573,0.4153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,6.810,93.218) lpos=(-10.665,4.690,-0.802) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8402,0.5415,0.8227) mvmt=(-0.0573,0.4153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,0.3015,0.7177) mvmt=(-0.0573,0.4153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1348,0.3015,0.7177) out=(0.1348,0.3015,1.1473) delta=(0.0000,0.0000,0.4296) deltaMag=0.4296 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.2840 dpPos=0.1814 dpMove=-0.4170 iDist=0.7160 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.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 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.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.3729) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,6.810,93.647) lpos=(-10.665,4.690,-0.373) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.3729) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 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.6652,4.6895,-0.3729) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8402,0.5415,1.2523) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.1348,0.3015,1.1473) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-1.9098,-0.2027) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.0454,-2.9278,2.6516) mvmt=(-0.4045,0.1102,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.3529) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.3729) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,6.810,93.647) lpos=(-10.665,4.690,-0.373) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.3729) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 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.6652,4.6895,-0.3729) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8402,0.5415,1.2523) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.1348,0.3015,1.1473) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-1.9098,-0.2027) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.0454,-2.9278,2.6516) mvmt=(-0.4045,0.1102,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.6895,-0.3529) mvmt=(-0.0573,0.4153,0.4296) collide=False insertType=1 objState=0x303 winterp=0.2840 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.6652,4.4748,-0.5950) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,7.025,93.425) lpos=(-10.665,4.475,-0.595) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6652,4.4748,-0.5950) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8402,0.3268,1.0302) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.1348,0.0868,0.9252) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-2.1245,-0.4248) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(0.2429,-3.0120,2.4295) mvmt=(-0.2070,0.0260,0.2075) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.4748,-0.5750) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.4748,-0.5950) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,7.025,93.425) lpos=(-10.665,4.475,-0.595) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6652,4.4748,-0.5950) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8402,0.3268,1.0302) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,0.0868,0.9252) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-2.1245,-0.4248) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2429,-3.0120,2.4295) mvmt=(-0.2070,0.0260,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.4748,-0.5750) mvmt=(-0.0573,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.2742,-0.8025) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,7.226,93.218) lpos=(-10.665,4.274,-0.802) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8402,0.1262,0.8227) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-0.1138,0.7177) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-2.3251,-0.6323) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.2742,-0.7825) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.2742,-1.5525) mvmt=(-0.0573,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,7.226,92.468) lpos=(-10.665,4.274,-1.552) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8402,0.1262,0.0727) mvmt=(-0.0573,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-0.1138,-0.0323) mvmt=(-0.0573,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1348,-0.1138,-0.0323) out=(0.1348,-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.6652,4.2742,-0.8025) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.165,7.226,93.218) lpos=(-10.665,4.274,-0.802) lprev=(-10.608,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8402,0.1262,0.8227) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-0.1138,0.7177) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1348,-2.3251,-0.6323) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6652,4.2742,-0.7825) mvmt=(-0.0573,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6870,4.4872,-0.5822) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.013,93.438) lpos=(-10.687,4.487,-0.582) lprev=(-10.665,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6870,4.4872,-0.5822) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8620,0.3391,1.0430) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,0.0991,0.9380) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,-2.1121,-0.4120) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2230,-3.0272,2.4423) mvmt=(-0.2044,0.0635,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6870,4.4872,-0.5622) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6870,4.4872,-0.5822) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.013,93.438) lpos=(-10.687,4.487,-0.582) lprev=(-10.665,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6870,4.4872,-0.5822) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8620,0.3391,1.0430) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,0.0991,0.9380) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,-2.1121,-0.4120) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2230,-3.0272,2.4423) mvmt=(-0.2044,0.0635,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6870,4.4872,-0.5622) mvmt=(-0.0218,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6870,4.2742,-0.8025) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.226,93.218) lpos=(-10.687,4.274,-0.802) lprev=(-10.665,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8620,0.1262,0.8227) mvmt=(-0.0218,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,-0.1138,0.7177) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,-2.3251,-0.6323) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6870,4.2742,-0.7825) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6870,4.2742,-1.5525) mvmt=(-0.0218,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.226,92.468) lpos=(-10.687,4.274,-1.552) lprev=(-10.665,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8620,0.1262,0.0727) mvmt=(-0.0218,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,-0.1138,-0.0323) mvmt=(-0.0218,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1130,-0.1138,-0.0323) out=(0.1130,-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.6870,4.2742,-0.8025) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.226,93.218) lpos=(-10.687,4.274,-0.802) lprev=(-10.665,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8620,0.1262,0.8227) mvmt=(-0.0218,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,-0.1138,0.7177) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1130,-2.3251,-0.6323) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6870,4.2742,-0.7825) mvmt=(-0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6750,4.4668,-0.6033) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.033,93.417) lpos=(-10.675,4.467,-0.603) lprev=(-10.687,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6750,4.4668,-0.6033) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8501,0.3188,1.0219) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,0.0788,0.9169) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,-2.1325,-0.4331) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6750,4.4668,-0.5833) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6750,4.4668,-0.6033) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.033,93.417) lpos=(-10.675,4.467,-0.603) lprev=(-10.687,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6750,4.4668,-0.6033) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8501,0.3188,1.0219) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,0.0788,0.9169) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,-2.1325,-0.4331) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6750,4.4668,-0.5833) mvmt=(0.0119,0.1926,0.1992) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6750,4.2742,-0.8025) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.226,93.218) lpos=(-10.675,4.274,-0.802) lprev=(-10.687,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8501,0.1262,0.8227) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,-0.1138,0.7177) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,-2.3251,-0.6323) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6750,4.2742,-0.7825) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6750,4.2742,-1.5525) mvmt=(0.0119,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.226,92.468) lpos=(-10.675,4.274,-1.552) lprev=(-10.687,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8501,0.1262,0.0727) mvmt=(0.0119,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,-0.1138,-0.0323) mvmt=(0.0119,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1250,-0.1138,-0.0323) out=(0.1250,-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.6750,4.2742,-0.8025) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.226,93.218) lpos=(-10.675,4.274,-0.802) lprev=(-10.687,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8501,0.1262,0.8227) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,-0.1138,0.7177) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1250,-2.3251,-0.6323) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6750,4.2742,-0.7825) mvmt=(0.0119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6460,4.4883,-0.5810) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.146,7.012,93.439) lpos=(-10.646,4.488,-0.581) lprev=(-10.675,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6460,4.4883,-0.5810) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8210,0.3403,1.0442) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,0.1003,0.9392) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,-2.1110,-0.4108) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-2.9891,2.4435) mvmt=(-0.1855,0.1107,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6460,4.4883,-0.5610) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6460,4.4883,-0.5810) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.146,7.012,93.439) lpos=(-10.646,4.488,-0.581) lprev=(-10.675,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6460,4.4883,-0.5810) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8210,0.3403,1.0442) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,0.1003,0.9392) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,-2.1110,-0.4108) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-2.9891,2.4435) mvmt=(-0.1855,0.1107,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6460,4.4883,-0.5610) mvmt=(0.0290,0.2141,0.2215) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6460,4.2742,-0.8025) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.146,7.226,93.218) lpos=(-10.646,4.274,-0.802) lprev=(-10.675,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8210,0.1262,0.8227) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,-0.1138,0.7177) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,-2.3251,-0.6323) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6460,4.2742,-0.7825) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6460,4.2742,-1.5525) mvmt=(0.0290,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.146,7.226,92.468) lpos=(-10.646,4.274,-1.552) lprev=(-10.675,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8210,0.1262,0.0727) mvmt=(0.0290,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,-0.1138,-0.0323) mvmt=(0.0290,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1540,-0.1138,-0.0323) out=(0.1540,-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.6460,4.2742,-0.8025) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.146,7.226,93.218) lpos=(-10.646,4.274,-0.802) lprev=(-10.675,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8210,0.1262,0.8227) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,-0.1138,0.7177) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1540,-2.3251,-0.6323) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6460,4.2742,-0.7825) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6171,4.4873,-0.5821) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.117,7.013,93.438) lpos=(-10.617,4.487,-0.582) lprev=(-10.646,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6171,4.4873,-0.5821) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7921,0.3393,1.0431) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,0.0993,0.9381) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,-2.1120,-0.4119) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2503,-2.9629,2.4424) mvmt=(-0.1846,0.1102,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6171,4.4873,-0.5621) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6171,4.4873,-0.5821) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.117,7.013,93.438) lpos=(-10.617,4.487,-0.582) lprev=(-10.646,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6171,4.4873,-0.5821) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7921,0.3393,1.0431) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,0.0993,0.9381) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,-2.1120,-0.4119) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2503,-2.9629,2.4424) mvmt=(-0.1846,0.1102,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6171,4.4873,-0.5621) mvmt=(0.0289,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6171,4.2742,-0.8025) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.117,7.226,93.218) lpos=(-10.617,4.274,-0.802) lprev=(-10.646,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7921,0.1262,0.8227) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,-0.1138,0.7177) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,-2.3251,-0.6323) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6171,4.2742,-0.7825) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6171,4.2742,-1.5525) mvmt=(0.0289,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.117,7.226,92.468) lpos=(-10.617,4.274,-1.552) lprev=(-10.646,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7921,0.1262,0.0727) mvmt=(0.0289,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,-0.1138,-0.0323) mvmt=(0.0289,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1829,-0.1138,-0.0323) out=(0.1829,-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.6171,4.2742,-0.8025) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.117,7.226,93.218) lpos=(-10.617,4.274,-0.802) lprev=(-10.646,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7921,0.1262,0.8227) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,-0.1138,0.7177) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1829,-2.3251,-0.6323) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6171,4.2742,-0.7825) mvmt=(0.0289,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5874,4.4934,-0.5757) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,7.007,93.444) lpos=(-10.587,4.493,-0.576) lprev=(-10.617,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5874,4.4934,-0.5757) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7624,0.3454,1.0495) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,0.1054,0.9445) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,-2.1059,-0.4055) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2563,-2.9331,2.4488) mvmt=(-0.1900,0.1133,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.4934,-0.5557) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.4934,-0.5757) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,7.007,93.444) lpos=(-10.587,4.493,-0.576) lprev=(-10.617,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5874,4.4934,-0.5757) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7624,0.3454,1.0495) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,0.1054,0.9445) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,-2.1059,-0.4055) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2563,-2.9331,2.4488) mvmt=(-0.1900,0.1133,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.4934,-0.5557) mvmt=(0.0297,0.2192,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.2742,-0.8025) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,7.226,93.218) lpos=(-10.587,4.274,-0.802) lprev=(-10.617,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7624,0.1262,0.8227) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,-0.1138,0.7177) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,-2.3251,-0.6323) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.2742,-0.7825) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.2742,-1.5525) mvmt=(0.0297,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,7.226,92.468) lpos=(-10.587,4.274,-1.552) lprev=(-10.617,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7624,0.1262,0.0727) mvmt=(0.0297,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,-0.1138,-0.0323) mvmt=(0.0297,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2126,-0.1138,-0.0323) out=(0.2126,-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.5874,4.2742,-0.8025) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,7.226,93.218) lpos=(-10.587,4.274,-0.802) lprev=(-10.617,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7624,0.1262,0.8227) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,-0.1138,0.7177) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,-2.3251,-0.6323) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.2742,-0.7825) mvmt=(0.0297,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5598,4.4778,-0.5919) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.022,93.428) lpos=(-10.560,4.478,-0.592) lprev=(-10.587,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5598,4.4778,-0.5919) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7348,0.3298,1.0333) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,0.0898,0.9283) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,-2.1215,-0.4217) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2815,-2.9138,2.4326) mvmt=(-0.1764,0.1053,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5598,4.4778,-0.5719) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5598,4.4778,-0.5919) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.022,93.428) lpos=(-10.560,4.478,-0.592) lprev=(-10.587,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5598,4.4778,-0.5919) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7348,0.3298,1.0333) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,0.0898,0.9283) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,-2.1215,-0.4217) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2815,-2.9138,2.4326) mvmt=(-0.1764,0.1053,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5598,4.4778,-0.5719) mvmt=(0.0276,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5598,4.2742,-0.8025) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.226,93.218) lpos=(-10.560,4.274,-0.802) lprev=(-10.587,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7348,0.1262,0.8227) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,-0.1138,0.7177) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,-2.3251,-0.6323) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5598,4.2742,-0.7825) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5598,4.2742,-1.5525) mvmt=(0.0276,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.226,92.468) lpos=(-10.560,4.274,-1.552) lprev=(-10.587,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7348,0.1262,0.0727) mvmt=(0.0276,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,-0.1138,-0.0323) mvmt=(0.0276,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2402,-0.1138,-0.0323) out=(0.2402,-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.5598,4.2742,-0.8025) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.226,93.218) lpos=(-10.560,4.274,-0.802) lprev=(-10.587,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7348,0.1262,0.8227) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,-0.1138,0.7177) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2402,-2.3251,-0.6323) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5598,4.2742,-0.7825) mvmt=(0.0276,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5329,4.4724,-0.5975) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.028,93.423) lpos=(-10.533,4.472,-0.597) lprev=(-10.560,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5329,4.4724,-0.5975) mvmt=(0.0269,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.7079,0.3243,1.0277) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,0.0843,0.9227) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,-2.1269,-0.4273) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2971,-2.8913,2.4270) mvmt=(-0.1717,0.1025,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5329,4.4724,-0.5775) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5329,4.4724,-0.5975) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.028,93.423) lpos=(-10.533,4.472,-0.597) lprev=(-10.560,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5329,4.4724,-0.5975) mvmt=(0.0269,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.7079,0.3243,1.0277) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,0.0843,0.9227) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,-2.1269,-0.4273) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2971,-2.8913,2.4270) mvmt=(-0.1717,0.1025,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5329,4.4724,-0.5775) mvmt=(0.0269,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5329,4.2742,-0.8025) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.226,93.218) lpos=(-10.533,4.274,-0.802) lprev=(-10.560,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7079,0.1262,0.8227) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,-0.1138,0.7177) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,-2.3251,-0.6323) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5329,4.2742,-0.7825) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5329,4.2742,-1.5525) mvmt=(0.0269,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.226,92.468) lpos=(-10.533,4.274,-1.552) lprev=(-10.560,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7079,0.1262,0.0727) mvmt=(0.0269,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,-0.1138,-0.0323) mvmt=(0.0269,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2671,-0.1138,-0.0323) out=(0.2671,-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.5329,4.2742,-0.8025) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.226,93.218) lpos=(-10.533,4.274,-0.802) lprev=(-10.560,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7079,0.1262,0.8227) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,-0.1138,0.7177) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2671,-2.3251,-0.6323) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5329,4.2742,-0.7825) mvmt=(0.0269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5066,4.4680,-0.6021) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.007,7.032,93.418) lpos=(-10.507,4.468,-0.602) lprev=(-10.533,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5066,4.4680,-0.6021) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6816,0.3199,1.0231) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,0.0799,0.9182) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,-2.1313,-0.4319) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3114,-2.8688,2.4224) mvmt=(-0.1679,0.1002,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5066,4.4680,-0.5821) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5066,4.4680,-0.6021) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.007,7.032,93.418) lpos=(-10.507,4.468,-0.602) lprev=(-10.533,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5066,4.4680,-0.6021) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6816,0.3199,1.0231) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,0.0799,0.9182) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,-2.1313,-0.4319) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3114,-2.8688,2.4224) mvmt=(-0.1679,0.1002,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5066,4.4680,-0.5821) mvmt=(0.0263,0.1938,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5066,4.2742,-0.8025) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.007,7.226,93.218) lpos=(-10.507,4.274,-0.802) lprev=(-10.533,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6816,0.1262,0.8227) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,-0.1138,0.7177) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,-2.3251,-0.6323) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5066,4.2742,-0.7825) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5066,4.2742,-1.5525) mvmt=(0.0263,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.007,7.226,92.468) lpos=(-10.507,4.274,-1.552) lprev=(-10.533,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6816,0.1262,0.0727) mvmt=(0.0263,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,-0.1138,-0.0323) mvmt=(0.0263,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2934,-0.1138,-0.0323) out=(0.2934,-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.5066,4.2742,-0.8025) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.007,7.226,93.218) lpos=(-10.507,4.274,-0.802) lprev=(-10.533,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6816,0.1262,0.8227) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,-0.1138,0.7177) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2934,-2.3251,-0.6323) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5066,4.2742,-0.7825) mvmt=(0.0263,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4784,4.4823,-0.5872) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.018,93.433) lpos=(-10.478,4.482,-0.587) lprev=(-10.507,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4784,4.4823,-0.5872) mvmt=(0.0282,0.2081,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=(-0.6534,0.3342,1.0379) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,0.0942,0.9330) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,-2.1170,-0.4171) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3093,-2.8373,2.4372) mvmt=(-0.1803,0.1076,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4784,4.4823,-0.5673) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4784,4.4823,-0.5872) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.018,93.433) lpos=(-10.478,4.482,-0.587) lprev=(-10.507,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4784,4.4823,-0.5872) mvmt=(0.0282,0.2081,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=(-0.6534,0.3342,1.0379) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,0.0942,0.9330) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,-2.1170,-0.4171) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3093,-2.8373,2.4372) mvmt=(-0.1803,0.1076,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4784,4.4823,-0.5673) mvmt=(0.0282,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4784,4.2742,-0.8025) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.226,93.218) lpos=(-10.478,4.274,-0.802) lprev=(-10.507,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6534,0.1262,0.8227) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,-0.1138,0.7177) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,-2.3251,-0.6323) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4784,4.2742,-0.7825) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4784,4.2742,-1.5525) mvmt=(0.0282,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.226,92.468) lpos=(-10.478,4.274,-1.552) lprev=(-10.507,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6534,0.1262,0.0727) mvmt=(0.0282,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,-0.1138,-0.0323) mvmt=(0.0282,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3216,-0.1138,-0.0323) out=(0.3216,-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.4784,4.2742,-0.8025) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.226,93.218) lpos=(-10.478,4.274,-0.802) lprev=(-10.507,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6534,0.1262,0.8227) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,-0.1138,0.7177) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3216,-2.3251,-0.6323) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4784,4.2742,-0.7825) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4525,4.4656,-0.6045) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.952,7.034,93.415) lpos=(-10.452,4.466,-0.605) lprev=(-10.478,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4525,4.4656,-0.6045) mvmt=(0.0260,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=(-0.6275,0.3175,1.0207) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,0.0775,0.9157) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,-2.1337,-0.4343) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3349,-2.8199,2.4200) mvmt=(-0.1658,0.0989,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4525,4.4656,-0.5845) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4525,4.4656,-0.6045) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.952,7.034,93.415) lpos=(-10.452,4.466,-0.605) lprev=(-10.478,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4525,4.4656,-0.6045) mvmt=(0.0260,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=(-0.6275,0.3175,1.0207) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,0.0775,0.9157) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,-2.1337,-0.4343) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3349,-2.8199,2.4200) mvmt=(-0.1658,0.0989,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4525,4.4656,-0.5845) mvmt=(0.0260,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4525,4.2742,-0.8025) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.952,7.226,93.218) lpos=(-10.452,4.274,-0.802) lprev=(-10.478,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6275,0.1262,0.8227) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,-0.1138,0.7177) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,-2.3251,-0.6323) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4525,4.2742,-0.7825) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4525,4.2742,-1.5525) mvmt=(0.0260,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.952,7.226,92.468) lpos=(-10.452,4.274,-1.552) lprev=(-10.478,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6275,0.1262,0.0727) mvmt=(0.0260,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,-0.1138,-0.0323) mvmt=(0.0260,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3475,-0.1138,-0.0323) out=(0.3475,-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.4525,4.2742,-0.8025) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.952,7.226,93.218) lpos=(-10.452,4.274,-0.802) lprev=(-10.478,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6275,0.1262,0.8227) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,-0.1138,0.7177) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3475,-2.3251,-0.6323) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4525,4.2742,-0.7825) mvmt=(0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4238,4.4857,-0.5837) mvmt=(0.0287,0.2115,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4238,4.4857,-0.5837) mvmt=(0.0287,0.2115,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,7.014,93.436) lpos=(-10.424,4.486,-0.584) lprev=(-10.452,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4238,4.4857,-0.5837) mvmt=(0.0287,0.2115,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5988,0.3377,1.0415) mvmt=(0.0287,0.2115,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,0.0977,0.9365) mvmt=(0.0287,0.2115,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,-2.1136,-0.4135) mvmt=(0.0287,0.2115,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-2.7857,2.4408) mvmt=(-0.1833,0.1093,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4238,4.4857,-0.5637) mvmt=(0.0287,0.2115,0.2188) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,7.014,93.436) lpos=(-10.424,4.486,-0.584) lprev=(-10.452,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4238,4.2742,-0.8025) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,7.226,93.218) lpos=(-10.424,4.274,-0.802) lprev=(-10.452,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5988,0.1262,0.8227) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,-0.1138,0.7177) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,-2.3251,-0.6323) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4238,4.2742,-0.7825) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4238,4.2742,-1.5525) mvmt=(0.0287,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,7.226,92.468) lpos=(-10.424,4.274,-1.552) lprev=(-10.452,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5988,0.1262,0.0727) mvmt=(0.0287,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,-0.1138,-0.0323) mvmt=(0.0287,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3762,-0.1138,-0.0323) out=(0.3762,-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.4238,4.2742,-0.8025) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,7.226,93.218) lpos=(-10.424,4.274,-0.802) lprev=(-10.452,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5988,0.1262,0.8227) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,-0.1138,0.7177) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,-2.3251,-0.6323) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4238,4.2742,-0.7825) mvmt=(0.0287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3955,4.4825,-0.5870) mvmt=(0.0282,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3955,4.4825,-0.5870) mvmt=(0.0282,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.017,93.433) lpos=(-10.396,4.483,-0.587) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3955,4.4825,-0.5870) mvmt=(0.0282,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.5705,0.3345,1.0382) mvmt=(0.0282,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5705,0.3345,1.0382) out=(-0.5705,0.3345,1.3633) delta=(0.0000,0.0000,0.3251) deltaMag=0.3251 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4581 dpPos=0.2501 dpMove=-0.4243 iDist=0.5419 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.3955,4.4825,-0.2619) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.017,93.758) lpos=(-10.396,4.483,-0.262) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3955,4.4825,-0.2619) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[push-back] site=adjust_sphere in=(-10.3955,4.4825,-0.2619) out=(-10.3955,4.4825,-0.2619) 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.4581->0.4581 dpPos=-0.2619 dpMove=-0.2749 iDist=2.6989 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.3955,4.4825,-0.2619) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5705,0.3345,1.3633) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[push-back-disp] site=dispatch center=(0.4045,0.0945,1.2583) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[push-back-disp] site=dispatch center=(0.4045,-2.1168,-0.0917) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[push-back-disp] site=dispatch center=(0.3416,-2.7609,2.7626) mvmt=(-0.1805,0.1077,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[push-back-disp] site=dispatch center=(-10.3955,4.4825,-0.2419) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[push-back-disp] site=dispatch center=(-10.3955,4.4825,-0.2619) mvmt=(0.0282,0.2083,0.5406) collide=False insertType=1 objState=0x303 winterp=0.4581 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.017,93.758) lpos=(-10.396,4.483,-0.262) lprev=(-10.424,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.896,7.017,93.433) lpos=(-10.396,4.483,-0.587) lprev=(-10.424,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3955,4.2742,-0.8025) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.218) lpos=(-10.396,4.274,-0.802) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5705,0.1262,0.8227) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4581 return=-1 +[push-back-disp] site=dispatch center=(-10.3955,4.2742,-0.8025) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.218) lpos=(-10.396,4.274,-0.802) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5705,0.1262,0.8227) mvmt=(0.0282,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5705,0.1262,0.8227) out=(-0.5705,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.3955,4.2742,-0.4702) mvmt=(0.0282,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.550) lpos=(-10.396,4.274,-0.470) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3955,4.2742,-0.4702) mvmt=(0.0282,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.3955,4.2742,-0.4702) mvmt=(0.0282,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.5705,0.1262,1.1550) mvmt=(0.0282,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4045,-0.1138,1.0500) mvmt=(0.0282,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4045,-2.3251,-0.3000) mvmt=(0.0282,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.5332,-2.8427,2.5543) mvmt=(0.0111,0.0260,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3955,4.2742,-0.4502) mvmt=(0.0282,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3955,4.2742,-0.4702) mvmt=(0.0282,0.0000,0.3323) collide=False insertType=1 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.550) lpos=(-10.396,4.274,-0.470) lprev=(-10.424,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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4238,4.4996,-0.4436) mvmt=(0.0000,0.2254,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4238,4.4996,-0.4436) mvmt=(0.0000,0.2254,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,7.000,93.576) lpos=(-10.424,4.500,-0.444) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4238,4.4996,-0.4436) mvmt=(0.0000,0.2254,0.3589) 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.4238,4.4996,-0.4436) mvmt=(0.0000,0.2254,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5988,0.3516,1.1816) mvmt=(0.0000,0.2254,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,0.1116,1.0766) mvmt=(0.0000,0.2254,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3762,-2.0997,-0.2734) mvmt=(0.0000,0.2254,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3148,-2.7802,2.5809) mvmt=(-0.2073,0.0884,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4238,4.4996,-0.4236) mvmt=(0.0000,0.2254,0.3589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,7.000,93.576) lpos=(-10.424,4.500,-0.444) lprev=(-10.424,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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3958,4.4878,-0.4554) mvmt=(0.0280,0.2136,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,4.4878,-0.4554) mvmt=(0.0280,0.2136,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.012,93.565) lpos=(-10.396,4.488,-0.455) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3958,4.4878,-0.4554) mvmt=(0.0280,0.2136,0.3471) 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.3958,4.4878,-0.4554) mvmt=(0.0280,0.2136,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5708,0.3398,1.1698) mvmt=(0.0280,0.2136,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4042,0.0998,1.0648) mvmt=(0.0280,0.2136,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4042,-2.1115,-0.2852) mvmt=(0.0280,0.2136,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.7591,2.5691) mvmt=(-0.1855,0.1095,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,4.4878,-0.4354) mvmt=(0.0280,0.2136,0.3471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.012,93.565) lpos=(-10.396,4.488,-0.455) lprev=(-10.424,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3958,4.2742,-0.8025) mvmt=(0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.218) lpos=(-10.396,4.274,-0.802) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5708,0.1262,0.8227) mvmt=(0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,4.2742,-0.8025) mvmt=(0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.218) lpos=(-10.396,4.274,-0.802) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5708,0.1262,0.8227) mvmt=(0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5708,0.1262,0.8227) out=(-0.5708,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.3958,4.2742,-0.4702) mvmt=(0.0280,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.550) lpos=(-10.396,4.274,-0.470) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3958,4.2742,-0.4702) mvmt=(0.0280,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.3958,4.2742,-0.4702) mvmt=(0.0280,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.5708,0.1262,1.1550) mvmt=(0.0280,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4042,-0.1138,1.0500) mvmt=(0.0280,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4042,-2.3251,-0.3000) mvmt=(0.0280,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.5331,-2.8429,2.5543) mvmt=(0.0110,0.0257,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,4.2742,-0.4502) mvmt=(0.0280,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,4.2742,-0.4702) mvmt=(0.0280,0.0000,0.3323) collide=False insertType=1 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,7.226,93.550) lpos=(-10.396,4.274,-0.470) lprev=(-10.424,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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6853,4.4552,-0.4880) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,7.045,93.532) lpos=(-10.685,4.455,-0.488) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6853,4.4552,-0.4880) mvmt=(-0.2615,0.1810,0.3144) 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.6853,4.4552,-0.4880) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8603,0.3071,1.1372) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,0.0671,1.0322) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,-2.1441,-0.3178) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2531,-3.0382,2.5365) mvmt=(-0.2691,-0.1696,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6853,4.4552,-0.4680) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6853,4.4552,-0.4880) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,7.045,93.532) lpos=(-10.685,4.455,-0.488) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6853,4.4552,-0.4880) mvmt=(-0.2615,0.1810,0.3144) 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.6853,4.4552,-0.4880) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8603,0.3071,1.1372) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,0.0671,1.0322) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,-2.1441,-0.3178) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2531,-3.0382,2.5365) mvmt=(-0.2691,-0.1696,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6853,4.4552,-0.4680) mvmt=(-0.2615,0.1810,0.3144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6853,4.2742,-0.8025) mvmt=(-0.2615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,7.226,93.218) lpos=(-10.685,4.274,-0.802) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8603,0.1262,0.8227) mvmt=(-0.2615,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,-0.1138,0.7177) mvmt=(-0.2615,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,-2.3251,-0.6323) mvmt=(-0.2615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4196,-3.1092,2.2220) mvmt=(-0.1026,-0.2406,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6853,4.2742,-0.7825) mvmt=(-0.2615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6853,4.2742,-1.5525) mvmt=(-0.2615,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,7.226,92.468) lpos=(-10.685,4.274,-1.552) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8603,0.1262,0.0727) mvmt=(-0.2615,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,-0.1138,-0.0323) mvmt=(-0.2615,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1147,-0.1138,-0.0323) out=(0.1147,-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.6853,4.2742,-0.8025) mvmt=(-0.2615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,7.226,93.218) lpos=(-10.685,4.274,-0.802) lprev=(-10.424,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8603,0.1262,0.8227) mvmt=(-0.2615,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,-0.1138,0.7177) mvmt=(-0.2615,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1147,-2.3251,-0.6323) mvmt=(-0.2615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4196,-3.1092,2.2220) mvmt=(-0.1026,-0.2406,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6853,4.2742,-0.7825) mvmt=(-0.2615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9249,4.4305,-0.6408) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.069,93.379) lpos=(-10.925,4.431,-0.641) lprev=(-10.685,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4305,-0.6408) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0999,0.2825,0.9844) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,0.0425,0.8794) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.1688,-0.4706) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1818,-3.2683,2.3837) mvmt=(-0.2378,-0.1591,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4305,-0.6208) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4305,-0.6408) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.069,93.379) lpos=(-10.925,4.431,-0.641) lprev=(-10.685,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4305,-0.6408) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0999,0.2825,0.9844) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,0.0425,0.8794) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.1688,-0.4706) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1818,-3.2683,2.3837) mvmt=(-0.2378,-0.1591,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4305,-0.6208) mvmt=(-0.2396,0.1563,0.1617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.2742,-0.8025) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.226,93.218) lpos=(-10.925,4.274,-0.802) lprev=(-10.685,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,0.1262,0.8227) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.1138,0.7177) mvmt=(-0.2396,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.3251,-0.6323) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.2742,-0.7825) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.2742,-1.5525) mvmt=(-0.2396,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.226,92.468) lpos=(-10.925,4.274,-1.552) lprev=(-10.685,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,0.1262,0.0727) mvmt=(-0.2396,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.1138,-0.0323) mvmt=(-0.2396,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1249,-0.1138,-0.0323) out=(-0.1249,-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.9249,4.2742,-0.8025) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.226,93.218) lpos=(-10.925,4.274,-0.802) lprev=(-10.685,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,0.1262,0.8227) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.1138,0.7177) mvmt=(-0.2396,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.3251,-0.6323) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.2742,-0.7825) mvmt=(-0.2396,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1608,4.4280,-0.6434) mvmt=(-0.2358,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1608,4.4280,-0.6434) mvmt=(-0.2358,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.661,7.072,93.377) lpos=(-11.161,4.428,-0.643) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1608,4.4280,-0.6434) mvmt=(-0.2358,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3358,0.2800,0.9818) mvmt=(-0.2358,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3608,0.0400,0.8768) mvmt=(-0.2358,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3608,-2.1713,-0.4732) mvmt=(-0.2358,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1608,4.4280,-0.6234) mvmt=(-0.2358,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.661,7.072,93.377) lpos=(-11.161,4.428,-0.643) lprev=(-10.925,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4280,-0.6434) mvmt=(0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.072,93.377) lpos=(-10.925,4.428,-0.643) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4280,-0.6434) mvmt=(0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0999,0.2800,0.9818) mvmt=(0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,0.0400,0.8768) mvmt=(-0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.1713,-0.4732) mvmt=(-0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4280,-0.6234) mvmt=(0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4280,-0.6434) mvmt=(0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.072,93.377) lpos=(-10.925,4.428,-0.643) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4280,-0.6434) mvmt=(0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0999,0.2800,0.9818) mvmt=(0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,0.0400,0.8768) mvmt=(-0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.1713,-0.4732) mvmt=(-0.0000,0.1538,0.1591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4280,-0.6234) mvmt=(0.0000,0.1538,0.1591) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1918,4.4483,-0.6224) mvmt=(-0.2669,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1918,4.4483,-0.6224) mvmt=(-0.2669,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.692,7.052,93.398) lpos=(-11.192,4.448,-0.622) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1918,4.4483,-0.6224) mvmt=(-0.2669,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3668,0.3002,1.0028) mvmt=(-0.2669,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3918,0.0602,0.8978) mvmt=(-0.2669,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3918,-2.1510,-0.4522) mvmt=(-0.2669,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1918,4.4483,-0.6024) mvmt=(-0.2669,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.692,7.052,93.398) lpos=(-11.192,4.448,-0.622) lprev=(-10.925,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4483,-0.6224) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.052,93.398) lpos=(-10.925,4.448,-0.622) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4483,-0.6224) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0999,0.3002,1.0028) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,0.0602,0.8978) mvmt=(-0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.1510,-0.4522) mvmt=(-0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4483,-0.6024) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4483,-0.6224) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.052,93.398) lpos=(-10.925,4.448,-0.622) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.4483,-0.6224) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0999,0.3002,1.0028) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,0.0602,0.8978) mvmt=(-0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.1510,-0.4522) mvmt=(-0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.4483,-0.6024) mvmt=(0.0000,0.1741,0.1801) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2024,4.1151,-0.9671) mvmt=(-0.2775,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2024,4.1151,-0.9671) mvmt=(-0.2775,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.702,7.385,93.053) lpos=(-11.202,4.115,-0.967) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3774,-0.0330,0.6581) mvmt=(-0.2775,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4024,-0.2730,0.5531) mvmt=(-0.2775,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4024,-2.4842,-0.7969) mvmt=(-0.2775,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2024,4.1151,-0.9471) mvmt=(-0.2775,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.702,7.385,93.053) lpos=(-11.202,4.115,-0.967) lprev=(-10.925,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,4.1151,-0.9671) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.385,93.053) lpos=(-10.925,4.115,-0.967) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.0330,0.6581) 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.1249,-0.2730,0.5531) 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.1249,-2.4842,-0.7969) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.1151,-0.9471) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.1151,-1.7171) mvmt=(0.0000,-0.1591,-0.9146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.385,92.303) lpos=(-10.925,4.115,-1.717) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.0330,-0.0919) mvmt=(0.0000,-0.1591,-0.9146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.2730,-0.1969) mvmt=(0.0000,-0.1591,-0.9146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1249,-0.2730,-0.1969) out=(-0.1249,-0.2730,0.5531) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9249,4.1151,-0.9671) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.385,93.053) lpos=(-10.925,4.115,-0.967) lprev=(-10.925,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.0330,0.6581) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.2730,0.5531) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.4842,-0.7969) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,4.1151,-0.9471) mvmt=(0.0000,-0.1591,-0.1646) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9249,3.9495,-1.1384) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.550,92.882) lpos=(-10.925,3.950,-1.138) lprev=(-10.925,4.115,-0.967) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.1985,0.4868) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.4385,0.3818) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.6498,-0.9682) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.9495,-1.1184) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.9495,-1.8884) mvmt=(0.0000,-0.1656,-0.9213) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.550,92.132) lpos=(-10.925,3.950,-1.888) lprev=(-10.925,4.115,-0.967) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.1985,-0.2632) mvmt=(0.0000,-0.1656,-0.9213) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.4385,-0.3682) mvmt=(0.0000,-0.1656,-0.9213) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1249,-0.4385,-0.3682) out=(-0.1249,-0.4385,0.3818) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9249,3.9495,-1.1384) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.550,92.882) lpos=(-10.925,3.950,-1.138) lprev=(-10.925,4.115,-0.967) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.1985,0.4868) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.4385,0.3818) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.6498,-0.9682) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.9495,-1.1184) mvmt=(0.0000,-0.1656,-0.1713) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1414,3.7717,-1.3224) mvmt=(-0.2165,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1414,3.7717,-1.3224) mvmt=(-0.2165,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.641,7.728,92.698) lpos=(-11.141,3.772,-1.322) lprev=(-10.925,3.950,-1.138) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3164,-0.3764,0.3028) mvmt=(-0.2165,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3414,-0.6164,0.1978) mvmt=(-0.2165,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3414,-2.8277,-1.1522) mvmt=(-0.2165,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1414,3.7717,-1.3024) mvmt=(-0.2165,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.641,7.728,92.698) lpos=(-11.141,3.772,-1.322) lprev=(-10.925,3.950,-1.138) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9249,3.7717,-1.3224) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.728,92.698) lpos=(-10.925,3.772,-1.322) lprev=(-10.925,3.950,-1.138) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.3764,0.3028) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.6164,0.1978) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.8277,-1.1522) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.7717,-1.3024) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.7717,-2.0724) mvmt=(0.0000,-0.1779,-0.9340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.728,91.948) lpos=(-10.925,3.772,-2.072) lprev=(-10.925,3.950,-1.138) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.3764,-0.4472) mvmt=(0.0000,-0.1779,-0.9340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.6164,-0.5522) mvmt=(0.0000,-0.1779,-0.9340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1249,-0.6164,-0.5522) out=(-0.1249,-0.6164,0.1978) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9249,3.7717,-1.3224) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.728,92.698) lpos=(-10.925,3.772,-1.322) lprev=(-10.925,3.950,-1.138) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.3764,0.3028) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.6164,0.1978) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-2.8277,-1.1522) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.7717,-1.3024) mvmt=(0.0000,-0.1779,-0.1840) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9249,3.5911,-1.5092) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.909,92.511) lpos=(-10.925,3.591,-1.509) lprev=(-10.925,3.772,-1.322) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.5570,0.1160) 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.1249,-0.7970,0.0110) 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.1249,-3.0082,-1.3390) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.5911,-1.4892) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.5911,-2.2592) mvmt=(0.0000,-0.1806,-0.9368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.909,91.761) lpos=(-10.925,3.591,-2.259) lprev=(-10.925,3.772,-1.322) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.5570,-0.6340) mvmt=(0.0000,-0.1806,-0.9368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.7970,-0.7390) mvmt=(0.0000,-0.1806,-0.9368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1249,-0.7970,-0.7390) out=(-0.1249,-0.7970,0.0110) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9249,3.5911,-1.5092) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.425,7.909,92.511) lpos=(-10.925,3.591,-1.509) lprev=(-10.925,3.772,-1.322) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0999,-0.5570,0.1160) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-0.7970,0.0110) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1249,-3.0082,-1.3390) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9249,3.5911,-1.4892) mvmt=(0.0000,-0.1806,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0770,3.3983,-1.7086) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.102,92.311) lpos=(-11.077,3.398,-1.709) lprev=(-10.925,3.591,-1.509) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-0.7497,-0.0834) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-0.9897,-0.1884) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-3.2010,-1.5384) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,3.3983,-1.6886) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,3.3983,-2.4586) mvmt=(-0.1521,-0.1928,-0.9494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.102,91.561) lpos=(-11.077,3.398,-2.459) lprev=(-10.925,3.591,-1.509) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-0.7497,-0.8334) mvmt=(-0.1521,-0.1928,-0.9494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-0.9897,-0.9384) mvmt=(-0.1521,-0.1928,-0.9494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2770,-0.9897,-0.9384) out=(-0.2770,-0.9897,-0.1884) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0770,3.3983,-1.7086) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.102,92.311) lpos=(-11.077,3.398,-1.709) lprev=(-10.925,3.591,-1.509) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-0.7497,-0.0834) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-0.9897,-0.1884) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-3.2010,-1.5384) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,3.3983,-1.6886) mvmt=(-0.1521,-0.1928,-0.1994) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1921,3.2062,-1.9073) mvmt=(-0.1151,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1921,3.2062,-1.9073) mvmt=(-0.1151,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.692,8.294,92.113) lpos=(-11.192,3.206,-1.907) lprev=(-11.077,3.398,-1.709) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3671,-0.9418,-0.2821) mvmt=(-0.1151,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3921,-1.1818,-0.3871) mvmt=(-0.1151,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3921,-3.3931,-1.7371) mvmt=(-0.1151,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1921,3.2062,-1.8873) mvmt=(-0.1151,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.692,8.294,92.113) lpos=(-11.192,3.206,-1.907) lprev=(-11.077,3.398,-1.709) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0770,3.2062,-1.9073) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.294,92.113) lpos=(-11.077,3.206,-1.907) lprev=(-11.077,3.398,-1.709) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-0.9418,-0.2821) 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.2770,-1.1818,-0.3871) 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.2770,-3.3931,-1.7371) 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.0770,3.2062,-1.8873) 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.0770,3.2062,-2.6573) mvmt=(0.0000,-0.1921,-0.9487) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0770,3.2062,-2.6573) out=(-11.0770,3.2062,-2.5700) delta=(0.0000,0.0000,0.0873) deltaMag=0.0873 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8835 dpPos=0.3927 dpMove=-0.7500 iDist=0.1165 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.577,8.294,91.363) lpos=(-11.077,3.206,-2.657) lprev=(-11.077,3.398,-1.709) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0770,3.2062,-2.5700) mvmt=(0.0000,-0.1921,-0.8614) collide=False insertType=0 objState=0x303 winterp=0.8835 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.294,91.450) lpos=(-11.077,3.206,-2.570) lprev=(-11.077,3.398,-1.709) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-0.9418,-0.9448) mvmt=(0.0000,-0.1921,-0.8614) collide=False insertType=0 objState=0x303 winterp=0.8835 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.1818,-1.0498) mvmt=(0.0000,-0.1921,-0.8614) collide=False insertType=0 objState=0x303 winterp=0.8835 return=-1 +[push-back] site=adjust_sphere in=(-0.2770,-1.1818,-1.0498) out=(-0.2770,-1.1818,-0.3871) delta=(0.0000,0.0000,0.6627) deltaMag=0.6627 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.8835->-0.0000 dpPos=0.0194 dpMove=-0.4606 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.0770,3.2062,-1.9073) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.294,92.113) lpos=(-11.077,3.206,-1.907) lprev=(-11.077,3.398,-1.709) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-0.9418,-0.2821) 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.2770,-1.1818,-0.3871) 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.2770,-3.3931,-1.7371) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,3.2062,-1.8873) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0770,3.0176,-2.1025) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.482,91.918) lpos=(-11.077,3.018,-2.102) lprev=(-11.077,3.206,-1.907) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.1305,-0.4773) 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.2770,-1.3705,-0.5823) 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.2770,-3.5817,-1.9323) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,3.0176,-2.0825) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,3.0176,-2.8525) mvmt=(0.0000,-0.1886,-0.9451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0770,3.0176,-2.8525) out=(-11.0770,3.0176,-2.5700) delta=(0.0000,0.0000,0.2825) deltaMag=0.2825 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6234 dpPos=0.1975 dpMove=-0.7500 iDist=0.3766 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.577,8.482,91.168) lpos=(-11.077,3.018,-2.852) lprev=(-11.077,3.206,-1.907) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0770,3.0176,-2.5700) mvmt=(0.0000,-0.1886,-0.6627) collide=False insertType=0 objState=0x303 winterp=0.6234 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.482,91.450) lpos=(-11.077,3.018,-2.570) lprev=(-11.077,3.206,-1.907) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.1305,-0.9448) mvmt=(0.0000,-0.1886,-0.6627) collide=False insertType=0 objState=0x303 winterp=0.6234 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.3705,-1.0498) mvmt=(0.0000,-0.1886,-0.6627) collide=False insertType=0 objState=0x303 winterp=0.6234 return=-1 +[push-back] site=adjust_sphere in=(-0.2770,-1.3705,-1.0498) out=(-0.2770,-1.3705,-0.5823) delta=(0.0000,0.0000,0.4675) deltaMag=0.4675 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6234->-0.0000 dpPos=0.1550 dpMove=-0.3249 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.0770,3.0176,-2.1025) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.482,91.918) lpos=(-11.077,3.018,-2.102) lprev=(-11.077,3.206,-1.907) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.1305,-0.4773) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.3705,-0.5823) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-3.5817,-1.9323) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,3.0176,-2.0825) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1267,2.8179,-2.3091) mvmt=(-0.0497,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1267,2.8179,-2.3091) mvmt=(-0.0497,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.627,8.682,91.711) lpos=(-11.127,2.818,-2.309) lprev=(-11.077,3.018,-2.102) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3017,-1.3302,-0.6839) mvmt=(-0.0497,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3267,-1.5702,-0.7888) mvmt=(-0.0497,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3267,-3.7814,-2.1389) mvmt=(-0.0497,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1267,2.8179,-2.2891) mvmt=(-0.0497,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.627,8.682,91.711) lpos=(-11.127,2.818,-2.309) lprev=(-11.077,3.018,-2.102) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0770,2.8179,-2.3091) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.682,91.711) lpos=(-11.077,2.818,-2.309) lprev=(-11.077,3.018,-2.102) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.3302,-0.6839) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.5702,-0.7888) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-3.7814,-2.1389) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,2.8179,-2.2891) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,2.8179,-3.0591) mvmt=(0.0000,-0.1997,-0.9566) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0770,2.8179,-3.0591) out=(-11.0770,2.8179,-2.5700) delta=(0.0000,0.0000,0.4891) deltaMag=0.4891 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.3479 dpPos=-0.0091 dpMove=-0.7500 iDist=0.6521 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.577,8.682,90.961) lpos=(-11.077,2.818,-3.059) lprev=(-11.077,3.018,-2.102) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0770,2.8179,-2.5700) mvmt=(0.0000,-0.1997,-0.4675) collide=False insertType=0 objState=0x303 winterp=0.3479 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.682,91.450) lpos=(-11.077,2.818,-2.570) lprev=(-11.077,3.018,-2.102) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.3302,-0.9448) mvmt=(0.0000,-0.1997,-0.4675) collide=False insertType=0 objState=0x303 winterp=0.3479 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.5702,-1.0498) mvmt=(0.0000,-0.1997,-0.4675) collide=False insertType=0 objState=0x303 winterp=0.3479 return=-1 +[push-back] site=adjust_sphere in=(-0.2770,-1.5702,-1.0498) out=(-0.2770,-1.5702,-0.7888) delta=(0.0000,0.0000,0.2610) deltaMag=0.2610 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.3479->-0.0000 dpPos=0.2986 dpMove=-0.1814 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.0770,2.8179,-2.3090) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.682,91.711) lpos=(-11.077,2.818,-2.309) lprev=(-11.077,3.018,-2.102) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.3302,-0.6838) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.5702,-0.7888) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-3.7814,-2.1388) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,2.8179,-2.2890) mvmt=(0.0000,-0.1997,-0.2066) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0770,2.6208,-2.5130) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.879,91.507) lpos=(-11.077,2.621,-2.513) lprev=(-11.077,2.818,-2.309) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.5273,-0.8878) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.7673,-0.9928) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,2.6208,-2.4930) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,2.6208,-3.2630) mvmt=(0.0000,-0.1971,-0.9539) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0770,2.6208,-3.2630) out=(-11.0770,2.6208,-2.5700) delta=(0.0000,0.0000,0.6930) deltaMag=0.6930 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0761 dpPos=-0.2130 dpMove=-0.7500 iDist=0.9239 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.577,8.879,90.757) lpos=(-11.077,2.621,-3.263) lprev=(-11.077,2.818,-2.309) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0770,2.6208,-2.5700) mvmt=(0.0000,-0.1971,-0.2610) collide=False insertType=0 objState=0x303 winterp=0.0761 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.879,91.450) lpos=(-11.077,2.621,-2.570) lprev=(-11.077,2.818,-2.309) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.5273,-0.9448) mvmt=(0.0000,-0.1971,-0.2610) collide=False insertType=0 objState=0x303 winterp=0.0761 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.7673,-1.0498) mvmt=(0.0000,-0.1971,-0.2610) collide=False insertType=0 objState=0x303 winterp=0.0761 return=-1 +[push-back] site=adjust_sphere in=(-0.2770,-1.7673,-1.0498) out=(-0.2770,-1.7673,-0.9928) delta=(0.0000,0.0000,0.0570) deltaMag=0.0570 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.0761->0.0000 dpPos=0.4404 dpMove=-0.0396 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.0770,2.6208,-2.5130) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,8.879,91.507) lpos=(-11.077,2.621,-2.513) lprev=(-11.077,2.818,-2.309) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2520,-1.5273,-0.8878) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2770,-1.7673,-0.9928) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0770,2.6208,-2.4930) mvmt=(0.0000,-0.1971,-0.2039) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0594,2.4233,-2.7173) mvmt=(0.0176,-0.1975,-0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0594,2.4233,-2.7173) mvmt=(0.0176,-0.1975,-0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0594,2.4233,-2.7173) out=(-11.0594,2.4233,-2.5700) delta=(0.0000,0.0000,0.1473) deltaMag=0.1473 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7545 dpPos=0.3327 dpMove=-0.6000 iDist=0.2455 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.559,9.077,91.303) lpos=(-11.059,2.423,-2.717) lprev=(-11.077,2.621,-2.513) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0594,2.4233,-2.5700) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=0 objState=0x303 winterp=0.7545 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,9.077,91.450) lpos=(-11.059,2.423,-2.570) lprev=(-11.077,2.621,-2.513) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2345,-1.7248,-0.9448) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=0 objState=0x303 winterp=0.7545 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.9648,-1.0498) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=0 objState=0x303 winterp=0.7545 return=-1 +[push-back-disp] site=dispatch center=(-11.0594,2.4233,-2.5500) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=0 objState=0x303 winterp=0.7545 return=-1 +[push-back-disp] site=dispatch center=(-11.0594,2.4233,-2.5700) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=1 objState=0x303 winterp=0.7545 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,9.077,91.450) lpos=(-11.059,2.423,-2.570) lprev=(-11.077,2.621,-2.513) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2345,-1.7248,-0.9448) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=1 objState=0x303 winterp=0.7545 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.9648,-1.0498) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=1 objState=0x303 winterp=0.7545 return=-1 +[push-back-disp] site=dispatch center=(-11.0594,2.4233,-2.5500) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=1 objState=0x303 winterp=0.7545 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,9.077,91.303) lpos=(-11.059,2.423,-2.717) lprev=(-11.077,2.621,-2.513) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2345,-1.7248,-0.9448) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=0 objState=0x303 winterp=0.7545 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.9648,-1.0498) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=0 objState=0x303 winterp=0.7545 return=-1 +[push-back-disp] site=dispatch center=(-11.0594,2.4233,-2.5500) mvmt=(0.0176,-0.1975,-0.0570) collide=False insertType=0 objState=0x303 winterp=0.7545 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0059,2.0039,-2.5700) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.506,9.496,91.450) lpos=(-11.006,2.004,-2.570) lprev=(-11.059,2.423,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1809,-2.1441,-0.9448) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2059,-2.3841,-1.0498) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0059,2.0039,-2.5500) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0059,2.0039,-3.3200) mvmt=(0.0535,-0.4193,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0059,2.0039,-3.3200) out=(-11.0059,2.0039,-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.506,9.496,90.700) lpos=(-11.006,2.004,-3.320) lprev=(-11.059,2.423,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0059,2.0039,-2.5700) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.506,9.496,91.450) lpos=(-11.006,2.004,-2.570) lprev=(-11.059,2.423,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1809,-2.1441,-0.9448) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2059,-2.3841,-1.0498) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0059,2.0039,-2.5500) mvmt=(0.0535,-0.4193,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9175,1.5911,-2.5700) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.418,9.909,91.450) lpos=(-10.918,1.591,-2.570) lprev=(-11.006,2.004,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0925,-2.5569,-0.9448) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1175,-2.7969,-1.0498) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9175,1.5911,-2.5500) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9175,1.5911,-3.3200) mvmt=(0.0884,-0.4128,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9175,1.5911,-3.3200) out=(-10.9175,1.5911,-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.418,9.909,90.700) lpos=(-10.918,1.591,-3.320) lprev=(-11.006,2.004,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9175,1.5911,-2.5700) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.418,9.909,91.450) lpos=(-10.918,1.591,-2.570) lprev=(-11.006,2.004,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0925,-2.5569,-0.9448) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1175,-2.7969,-1.0498) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9175,1.5911,-2.5500) mvmt=(0.0884,-0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7940,1.1852,-2.5700) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.294,10.315,91.450) lpos=(-10.794,1.185,-2.570) lprev=(-10.918,1.591,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9690,-2.9629,-0.9448) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0060,-3.2029,-1.0498) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7940,1.1852,-2.5500) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7940,1.1852,-3.3200) mvmt=(0.1235,-0.4059,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7940,1.1852,-3.3200) out=(-10.7940,1.1852,-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.294,10.315,90.700) lpos=(-10.794,1.185,-3.320) lprev=(-10.918,1.591,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7940,1.1852,-2.5700) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.294,10.315,91.450) lpos=(-10.794,1.185,-2.570) lprev=(-10.918,1.591,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9690,-2.9629,-0.9448) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0060,-3.2029,-1.0498) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7940,1.1852,-2.5500) mvmt=(0.1235,-0.4059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6702,0.7897,-2.5700) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.170,10.710,91.450) lpos=(-10.670,0.790,-2.570) lprev=(-10.794,1.185,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8452,-3.3584,-0.9448) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1298,-3.5984,-1.0498) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6702,0.7897,-2.5500) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6702,0.7897,-3.3200) mvmt=(0.1238,-0.3955,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6702,0.7897,-3.3200) out=(-10.6702,0.7897,-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.170,10.710,90.700) lpos=(-10.670,0.790,-3.320) lprev=(-10.794,1.185,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6702,0.7897,-2.5700) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.170,10.710,91.450) lpos=(-10.670,0.790,-2.570) lprev=(-10.794,1.185,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8452,-3.3584,-0.9448) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1298,-3.5984,-1.0498) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6702,0.7897,-2.5500) mvmt=(0.1238,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5517,0.4111,-2.5700) mvmt=(0.1185,-0.3786,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5517,0.4111,-2.5700) mvmt=(0.1185,-0.3786,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,11.089,91.450) lpos=(-10.552,0.411,-2.570) lprev=(-10.670,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7267,-3.7370,-0.9448) mvmt=(0.1185,-0.3786,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2483,-3.9770,-1.0498) mvmt=(0.1185,-0.3786,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5517,0.4111,-2.5500) mvmt=(0.1185,-0.3786,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,11.089,91.450) lpos=(-10.552,0.411,-2.570) lprev=(-10.670,0.790,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.5517,0.7897,-2.5700) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,10.710,91.450) lpos=(-10.552,0.790,-2.570) lprev=(-10.670,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7267,-3.3584,-0.9448) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2483,-3.5984,-1.0498) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5517,0.7897,-2.5500) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5517,0.7897,-3.3200) mvmt=(0.1185,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.5517,0.7897,-3.3200) out=(-10.5517,0.7897,-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.052,10.710,90.700) lpos=(-10.552,0.790,-3.320) lprev=(-10.670,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.5517,0.7897,-2.5700) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,10.710,91.450) lpos=(-10.552,0.790,-2.570) lprev=(-10.670,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7267,-3.3584,-0.9448) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2483,-3.5984,-1.0498) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5517,0.7897,-2.5500) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4242,0.7897,-2.5700) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,10.710,91.450) lpos=(-10.424,0.790,-2.570) lprev=(-10.552,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5992,-3.3584,-0.9448) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3758,-3.5984,-1.0498) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4242,0.7897,-2.5500) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4242,0.7897,-3.3200) mvmt=(0.1275,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.4242,0.7897,-3.3200) out=(-10.4242,0.7897,-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=(140.924,10.710,90.700) lpos=(-10.424,0.790,-3.320) lprev=(-10.552,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.4242,0.7897,-2.5700) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.924,10.710,91.450) lpos=(-10.424,0.790,-2.570) lprev=(-10.552,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5992,-3.3584,-0.9448) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3758,-3.5984,-1.0498) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4242,0.7897,-2.5500) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2986,0.3884,-2.5700) mvmt=(0.1256,-0.4013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2986,0.3884,-2.5700) mvmt=(0.1256,-0.4013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,11.112,91.450) lpos=(-10.299,0.388,-2.570) lprev=(-10.424,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4736,-3.7597,-0.9448) mvmt=(0.1256,-0.4013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5014,-3.9997,-1.0498) mvmt=(0.1256,-0.4013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2986,0.3884,-2.5500) mvmt=(0.1256,-0.4013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,11.112,91.450) lpos=(-10.299,0.388,-2.570) lprev=(-10.424,0.790,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2986,0.7897,-2.5700) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,10.710,91.450) lpos=(-10.299,0.790,-2.570) lprev=(-10.424,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4736,-3.3584,-0.9448) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5014,-3.5984,-1.0498) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2986,0.7897,-2.5500) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2986,0.7897,-3.3200) mvmt=(0.1256,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2986,0.7897,-3.3200) out=(-10.2986,0.7897,-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=(140.799,10.710,90.700) lpos=(-10.299,0.790,-3.320) lprev=(-10.424,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.2986,0.7897,-2.5700) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,10.710,91.450) lpos=(-10.299,0.790,-2.570) lprev=(-10.424,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4736,-3.3584,-0.9448) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5014,-3.5984,-1.0498) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2986,0.7897,-2.5500) mvmt=(0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1737,0.7897,-2.5700) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.674,10.710,91.450) lpos=(-10.174,0.790,-2.570) lprev=(-10.299,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3487,-3.3584,-0.9448) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6263,-3.5984,-1.0498) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1737,0.7897,-2.5500) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1737,0.7897,-3.3200) mvmt=(0.1249,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1737,0.7897,-3.3200) out=(-10.1737,0.7897,-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=(140.674,10.710,90.700) lpos=(-10.174,0.790,-3.320) lprev=(-10.299,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1737,0.7897,-2.5700) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.674,10.710,91.450) lpos=(-10.174,0.790,-2.570) lprev=(-10.299,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3487,-3.3584,-0.9448) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6263,-3.5984,-1.0498) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1737,0.7897,-2.5500) mvmt=(0.1249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0462,0.3824,-2.5700) mvmt=(0.1275,-0.4073,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0462,0.3824,-2.5700) mvmt=(0.1275,-0.4073,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.546,11.118,91.450) lpos=(-10.046,0.382,-2.570) lprev=(-10.174,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2212,-3.7657,-0.9448) mvmt=(0.1275,-0.4073,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7538,-4.0057,-1.0498) mvmt=(0.1275,-0.4073,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0462,0.3824,-2.5500) mvmt=(0.1275,-0.4073,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.546,11.118,91.450) lpos=(-10.046,0.382,-2.570) lprev=(-10.174,0.790,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.0462,0.7897,-2.5700) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.546,10.710,91.450) lpos=(-10.046,0.790,-2.570) lprev=(-10.174,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2212,-3.3584,-0.9448) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7538,-3.5984,-1.0498) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0462,0.7897,-2.5500) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0462,0.7897,-3.3200) mvmt=(0.1275,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.0462,0.7897,-3.3200) out=(-10.0462,0.7897,-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=(140.546,10.710,90.700) lpos=(-10.046,0.790,-3.320) lprev=(-10.174,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.0462,0.7897,-2.5700) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.546,10.710,91.450) lpos=(-10.046,0.790,-2.570) lprev=(-10.174,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2212,-3.3584,-0.9448) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7538,-3.5984,-1.0498) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0462,0.7897,-2.5500) mvmt=(0.1275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.9176,0.7897,-2.5700) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.418,10.710,91.450) lpos=(-9.918,0.790,-2.570) lprev=(-10.046,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0926,-3.3584,-0.9448) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8824,-3.5984,-1.0498) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9176,0.7897,-2.5500) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9176,0.7897,-3.3200) mvmt=(0.1287,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.9176,0.7897,-3.3200) out=(-9.9176,0.7897,-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=(140.418,10.710,90.700) lpos=(-9.918,0.790,-3.320) lprev=(-10.046,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.9176,0.7897,-2.5700) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.418,10.710,91.450) lpos=(-9.918,0.790,-2.570) lprev=(-10.046,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0926,-3.3584,-0.9448) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8824,-3.5984,-1.0498) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9176,0.7897,-2.5500) mvmt=(0.1287,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.7966,0.4033,-2.5700) mvmt=(0.1209,-0.3863,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7966,0.4033,-2.5700) mvmt=(0.1209,-0.3863,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.297,11.097,91.450) lpos=(-9.797,0.403,-2.570) lprev=(-9.918,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0284,-3.7447,-0.9448) mvmt=(0.1209,-0.3863,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0034,-3.9847,-1.0498) mvmt=(0.1209,-0.3863,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7966,0.4033,-2.5500) mvmt=(0.1209,-0.3863,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.297,11.097,91.450) lpos=(-9.797,0.403,-2.570) lprev=(-9.918,0.790,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-9.7966,0.7897,-2.5700) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.297,10.710,91.450) lpos=(-9.797,0.790,-2.570) lprev=(-9.918,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0284,-3.3584,-0.9448) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0034,-3.5984,-1.0498) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7966,0.7897,-2.5500) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7966,0.7897,-3.3200) mvmt=(0.1209,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.7966,0.7897,-3.3200) out=(-9.7966,0.7897,-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=(140.297,10.710,90.700) lpos=(-9.797,0.790,-3.320) lprev=(-9.918,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.7966,0.7897,-2.5700) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.297,10.710,91.450) lpos=(-9.797,0.790,-2.570) lprev=(-9.918,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0284,-3.3584,-0.9448) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0034,-3.5984,-1.0498) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7966,0.7897,-2.5500) mvmt=(0.1209,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.6688,0.7897,-2.5700) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.169,10.710,91.450) lpos=(-9.669,0.790,-2.570) lprev=(-9.797,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1562,-3.3584,-0.9448) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1312,-3.5984,-1.0498) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6688,0.7897,-2.5500) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6688,0.7897,-3.3200) mvmt=(0.1278,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.6688,0.7897,-3.3200) out=(-9.6688,0.7897,-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=(140.169,10.710,90.700) lpos=(-9.669,0.790,-3.320) lprev=(-9.797,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.6688,0.7897,-2.5700) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.169,10.710,91.450) lpos=(-9.669,0.790,-2.570) lprev=(-9.797,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1562,-3.3584,-0.9448) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1312,-3.5984,-1.0498) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6688,0.7897,-2.5500) mvmt=(0.1278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.5436,0.3897,-2.5700) mvmt=(0.1252,-0.4000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5436,0.3897,-2.5700) mvmt=(0.1252,-0.4000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.044,11.110,91.450) lpos=(-9.544,0.390,-2.570) lprev=(-9.669,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2814,-3.7584,-0.9448) mvmt=(0.1252,-0.4000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2564,-3.9984,-1.0498) mvmt=(0.1252,-0.4000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5436,0.3897,-2.5500) mvmt=(0.1252,-0.4000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.044,11.110,91.450) lpos=(-9.544,0.390,-2.570) lprev=(-9.669,0.790,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-9.5436,0.7897,-2.5700) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.044,10.710,91.450) lpos=(-9.544,0.790,-2.570) lprev=(-9.669,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2814,-3.3584,-0.9448) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2564,-3.5984,-1.0498) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5436,0.7897,-2.5500) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5436,0.7897,-3.3200) mvmt=(0.1252,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.5436,0.7897,-3.3200) out=(-9.5436,0.7897,-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=(140.044,10.710,90.700) lpos=(-9.544,0.790,-3.320) lprev=(-9.669,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.5436,0.7897,-2.5700) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.044,10.710,91.450) lpos=(-9.544,0.790,-2.570) lprev=(-9.669,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2814,-3.3584,-0.9448) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2564,-3.5984,-1.0498) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5436,0.7897,-2.5500) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.4238,0.7897,-2.5700) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.924,10.710,91.450) lpos=(-9.424,0.790,-2.570) lprev=(-9.544,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4012,-3.3584,-0.9448) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3762,-3.5984,-1.0498) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4238,0.7897,-2.5500) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4238,0.7897,-3.3200) mvmt=(0.1198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.4238,0.7897,-3.3200) out=(-9.4238,0.7897,-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.924,10.710,90.700) lpos=(-9.424,0.790,-3.320) lprev=(-9.544,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.4238,0.7897,-2.5700) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.924,10.710,91.450) lpos=(-9.424,0.790,-2.570) lprev=(-9.544,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4012,-3.3584,-0.9448) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3762,-3.5984,-1.0498) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4238,0.7897,-2.5500) mvmt=(0.1198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.0254,0.9338,-2.5700) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.525,10.566,91.450) lpos=(-9.025,0.934,-2.570) lprev=(-9.424,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7996,-3.2143,-0.9448) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7746,-3.4543,-1.0498) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0254,0.9338,-2.5500) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0254,0.9338,-3.3200) mvmt=(0.3984,0.1441,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.0254,0.9338,-3.3200) out=(-9.0254,0.9338,-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.525,10.566,90.700) lpos=(-9.025,0.934,-3.320) lprev=(-9.424,0.790,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.0254,0.9338,-2.5700) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.525,10.566,91.450) lpos=(-9.025,0.934,-2.570) lprev=(-9.424,0.790,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7996,-3.2143,-0.9448) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7746,-3.4543,-1.0498) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0254,0.9338,-2.5500) mvmt=(0.3984,0.1441,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.6412,1.1105,-2.5700) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.141,10.389,91.450) lpos=(-8.641,1.111,-2.570) lprev=(-9.025,0.934,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1838,-3.0375,-0.9448) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1588,-3.2775,-1.0498) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6412,1.1105,-2.5500) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6412,1.1105,-3.3200) mvmt=(0.3842,0.1768,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.6412,1.1105,-3.3200) out=(-8.6412,1.1105,-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.389,90.700) lpos=(-8.641,1.111,-3.320) lprev=(-9.025,0.934,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.6412,1.1105,-2.5700) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.141,10.389,91.450) lpos=(-8.641,1.111,-2.570) lprev=(-9.025,0.934,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1838,-3.0375,-0.9448) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1588,-3.2775,-1.0498) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6412,1.1105,-2.5500) mvmt=(0.3842,0.1768,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.2735,1.3187,-2.5700) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.774,10.181,91.450) lpos=(-8.274,1.319,-2.570) lprev=(-8.641,1.111,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5515,-2.8293,-0.9448) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5265,-3.0693,-1.0498) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.2735,1.3187,-2.5500) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.2735,1.3187,-3.3200) mvmt=(0.3677,0.2082,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.2735,1.3187,-3.3200) out=(-8.2735,1.3187,-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.774,10.181,90.700) lpos=(-8.274,1.319,-3.320) lprev=(-8.641,1.111,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.2735,1.3187,-2.5700) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.774,10.181,91.450) lpos=(-8.274,1.319,-2.570) lprev=(-8.641,1.111,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5515,-2.8293,-0.9448) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5265,-3.0693,-1.0498) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.2735,1.3187,-2.5500) mvmt=(0.3677,0.2082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.9203,1.5606,-2.5700) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.420,9.939,91.450) lpos=(-7.920,1.561,-2.570) lprev=(-8.274,1.319,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9047,-2.5875,-0.9448) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8797,-2.8275,-1.0498) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9203,1.5606,-2.5500) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9203,1.5606,-3.3200) mvmt=(0.3532,0.2418,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.9203,1.5606,-3.3200) out=(-7.9203,1.5606,-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.420,9.939,90.700) lpos=(-7.920,1.561,-3.320) lprev=(-8.274,1.319,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.9203,1.5606,-2.5700) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.420,9.939,91.450) lpos=(-7.920,1.561,-2.570) lprev=(-8.274,1.319,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9047,-2.5875,-0.9448) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8797,-2.8275,-1.0498) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9203,1.5606,-2.5500) mvmt=(0.3532,0.2418,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.5925,1.8281,-2.5700) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.093,9.672,91.450) lpos=(-7.593,1.828,-2.570) lprev=(-7.920,1.561,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2325,-2.3200,-0.9448) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2075,-2.5600,-1.0498) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.5925,1.8281,-2.5500) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.5925,1.8281,-3.3200) mvmt=(0.3278,0.2675,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.5925,1.8281,-3.3200) out=(-7.5925,1.8281,-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.093,9.672,90.700) lpos=(-7.593,1.828,-3.320) lprev=(-7.920,1.561,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.5925,1.8281,-2.5700) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.093,9.672,91.450) lpos=(-7.593,1.828,-2.570) lprev=(-7.920,1.561,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2325,-2.3200,-0.9448) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2075,-2.5600,-1.0498) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.5925,1.8281,-2.5500) mvmt=(0.3278,0.2675,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.2851,2.1260,-2.5700) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.785,9.374,91.450) lpos=(-7.285,2.126,-2.570) lprev=(-7.593,1.828,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5399,-2.0221,-0.9448) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5149,-2.2621,-1.0498) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.2851,2.1260,-2.5500) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.2851,2.1260,-3.3200) mvmt=(0.3074,0.2979,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.2851,2.1260,-3.3200) out=(-7.2851,2.1260,-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.785,9.374,90.700) lpos=(-7.285,2.126,-3.320) lprev=(-7.593,1.828,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.2851,2.1260,-2.5700) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.785,9.374,91.450) lpos=(-7.285,2.126,-2.570) lprev=(-7.593,1.828,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5399,-2.0221,-0.9448) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5149,-2.2621,-1.0498) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.2851,2.1260,-2.5500) mvmt=(0.3074,0.2979,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.9816,2.4317,-2.5700) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.482,9.068,91.450) lpos=(-6.982,2.432,-2.570) lprev=(-7.285,2.126,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8434,-1.7163,-0.9448) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8184,-1.9563,-1.0498) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5674,-0.4254,0.4545) mvmt=(-0.1622,0.3991,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9816,2.4317,-2.5500) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9816,2.4317,-3.3200) mvmt=(0.3035,0.3057,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.9816,2.4317,-3.3200) out=(-6.9816,2.4317,-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.482,9.068,90.700) lpos=(-6.982,2.432,-3.320) lprev=(-7.285,2.126,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.9816,2.4317,-2.5700) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.482,9.068,91.450) lpos=(-6.982,2.432,-2.570) lprev=(-7.285,2.126,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8434,-1.7163,-0.9448) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8184,-1.9563,-1.0498) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5674,-0.4254,0.4545) mvmt=(-0.1622,0.3991,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9816,2.4317,-2.5500) mvmt=(0.3035,0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.6806,2.7351,-2.5700) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.181,8.765,91.450) lpos=(-6.681,2.735,-2.570) lprev=(-6.982,2.432,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1444,-1.4130,-0.9448) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1194,-1.6530,-1.0498) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4065,-0.0294,0.4545) mvmt=(-0.1609,0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6806,2.7351,-2.5500) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6806,2.7351,-3.3200) mvmt=(0.3011,0.3033,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.6806,2.7351,-3.3200) out=(-6.6806,2.7351,-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.181,8.765,90.700) lpos=(-6.681,2.735,-3.320) lprev=(-6.982,2.432,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.6806,2.7351,-2.5700) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.181,8.765,91.450) lpos=(-6.681,2.735,-2.570) lprev=(-6.982,2.432,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1444,-1.4130,-0.9448) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1194,-1.6530,-1.0498) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4065,-0.0294,0.4545) mvmt=(-0.1609,0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6806,2.7351,-2.5500) mvmt=(0.3011,0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.3721,3.0458,-2.5700) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.872,8.454,91.450) lpos=(-6.372,3.046,-2.570) lprev=(-6.681,2.735,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.3721,3.0458,-2.5700) mvmt=(0.3085,0.3108,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.4529,-1.1022,-0.9448) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4279,-1.3422,-1.0498) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2417,0.3762,0.4545) mvmt=(-0.1649,0.4057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3721,3.0458,-2.5500) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3721,3.0458,-3.3200) mvmt=(0.3085,0.3108,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.3721,3.0458,-3.3200) out=(-6.3721,3.0458,-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.872,8.454,90.700) lpos=(-6.372,3.046,-3.320) lprev=(-6.681,2.735,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.3721,3.0458,-2.5700) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.872,8.454,91.450) lpos=(-6.372,3.046,-2.570) lprev=(-6.681,2.735,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.3721,3.0458,-2.5700) mvmt=(0.3085,0.3108,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.4529,-1.1022,-0.9448) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4279,-1.3422,-1.0498) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2417,0.3762,0.4545) mvmt=(-0.1649,0.4057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3721,3.0458,-2.5500) mvmt=(0.3085,0.3108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.0903,3.3298,-2.5700) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.590,8.170,91.450) lpos=(-6.090,3.330,-2.570) lprev=(-6.372,3.046,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0903,3.3298,-2.5700) mvmt=(0.2818,0.2839,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.7347,-0.8183,-0.9448) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7097,-1.0583,-1.0498) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0911,0.7468,0.4545) mvmt=(-0.1506,0.3706,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0903,3.3298,-2.5500) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0903,3.3298,-3.3200) mvmt=(0.2818,0.2839,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.0903,3.3298,-3.3200) out=(-6.0903,3.3298,-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.590,8.170,90.700) lpos=(-6.090,3.330,-3.320) lprev=(-6.372,3.046,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.0903,3.3298,-2.5700) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.590,8.170,91.450) lpos=(-6.090,3.330,-2.570) lprev=(-6.372,3.046,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0903,3.3298,-2.5700) mvmt=(0.2818,0.2839,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.7347,-0.8183,-0.9448) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7097,-1.0583,-1.0498) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0911,0.7468,0.4545) mvmt=(-0.1506,0.3706,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0903,3.3298,-2.5500) mvmt=(0.2818,0.2839,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.8072,3.6150,-2.5700) mvmt=(0.2831,0.2852,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.307,7.885,91.450) lpos=(-5.807,3.615,-2.570) lprev=(-6.090,3.330,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.8072,3.6150,-2.5700) mvmt=(0.2831,0.2852,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.0178,-0.5331,-0.9448) mvmt=(0.2831,0.2852,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9928,-0.7731,-1.0498) mvmt=(0.2831,0.2852,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9398,1.1191,0.4545) mvmt=(-0.1513,0.3723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.8072,3.6150,-2.5500) mvmt=(0.2831,0.2852,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[check-bldg] portal->0xA9B40145 wpos=(136.307,7.885,90.700) lpos=(-5.807,3.615,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B4014C wpos=(136.307,7.885,90.700) lpos=(-5.807,3.615,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B4014E wpos=(136.307,7.885,90.700) lpos=(-5.807,3.615,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B4014F wpos=(136.307,7.885,90.700) lpos=(-5.807,3.615,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B40150 wpos=(136.307,7.885,90.700) lpos=(-5.807,3.615,-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.307,7.885,89.950) lpos=(-5.807,3.615,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B4014C wpos=(136.307,7.885,89.950) lpos=(-5.807,3.615,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B4014E wpos=(136.307,7.885,89.950) lpos=(-5.807,3.615,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B4014F wpos=(136.307,7.885,89.950) lpos=(-5.807,3.615,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B40150 wpos=(136.307,7.885,89.950) lpos=(-5.807,3.615,-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.7928,3.6295,-2.5762) mvmt=(0.2975,0.2997,-0.0062) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.293,7.871,91.444) lpos=(-5.793,3.629,-2.576) lprev=(-6.090,3.330,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7928,3.6295,-2.5762) mvmt=(0.2975,0.2997,-0.0062) 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.0322,-0.5186,-0.9510) mvmt=(0.2975,0.2997,-0.0062) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.0072,-0.7586,-1.0560) mvmt=(0.2975,0.2997,-0.0062) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9321,1.1380,0.4483) mvmt=(-0.1590,0.3912,-0.0062) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7928,3.6295,-2.5562) mvmt=(0.2975,0.2997,-0.0062) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4932,3.9313,-2.5951) mvmt=(0.2996,0.3019,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(135.993,7.569,91.425) lpos=(-5.493,3.931,-2.595) lprev=(-5.793,3.629,-2.576) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.4932,3.9313,-2.5951) mvmt=(0.2996,0.3019,-0.0189) 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.3318,-0.2167,-0.9699) mvmt=(0.2996,0.3019,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3068,-0.4567,-1.0749) mvmt=(0.2996,0.3019,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7720,1.5321,0.4294) mvmt=(-0.1601,0.3940,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4932,3.9313,-2.5751) mvmt=(0.2996,0.3019,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1860,4.2409,-2.6275) mvmt=(0.3072,0.3095,-0.0324) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(135.686,7.259,91.392) lpos=(-5.186,4.241,-2.628) lprev=(-5.493,3.931,-2.595) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1860,4.2409,-2.6275) mvmt=(0.3072,0.3095,-0.0324) 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.6390,0.0928,-1.0023) mvmt=(0.3072,0.3095,-0.0324) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6140,-0.1472,-1.1073) mvmt=(0.3072,0.3095,-0.0324) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6078,1.9361,0.3970) mvmt=(-0.1642,0.4040,-0.0324) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1860,4.2409,-2.6075) mvmt=(0.3072,0.3095,-0.0324) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.9049,4.5241,-2.6688) mvmt=(0.2812,0.2833,-0.0413) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.405,6.976,91.351) lpos=(-4.905,4.524,-2.669) lprev=(-5.186,4.241,-2.628) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9201,0.3761,-1.0436) mvmt=(0.2812,0.2833,-0.0413) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4576,2.3058,0.3557) mvmt=(-0.1503,0.3698,-0.0413) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.9049,4.5241,-2.6488) mvmt=(0.2812,0.2833,-0.0413) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[cell-transit] 0xA9B40147 -> 0xA9B40148 pos=(135.405,6.976,90.871) reason=resolver +[push-back-disp] site=dispatch center=(-4.6262,4.8049,-2.7208) mvmt=(0.2786,0.2807,-0.0519) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.126,6.695,91.299) lpos=(-4.626,4.805,-2.721) lprev=(-4.905,4.524,-2.669) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.6262,4.8049,-2.7008) mvmt=(0.2786,0.2807,-0.0519) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.3191,5.1143,-2.7907) mvmt=(0.3071,0.3094,-0.0699) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.819,6.386,91.229) lpos=(-4.319,5.114,-2.791) lprev=(-4.626,4.805,-2.721) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.3191,5.1143,-2.7707) mvmt=(0.3071,0.3094,-0.0699) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-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=0x80000296 name="Town Crier" setup=0x02000001 pos=(29.3,173.7,93.1)@0xA9B30010 itemType=0x00000010 animParts=45 texChanges=31 subPalettes=12 +[push-back-disp] site=dispatch center=(-4.0319,5.4037,-2.8680) mvmt=(0.2872,0.2894,-0.0774) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.532,6.096,91.152) lpos=(-4.032,5.404,-2.868) lprev=(-4.319,5.114,-2.791) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.0319,5.4037,-2.8480) mvmt=(0.2872,0.2894,-0.0774) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[input] MovementTurnLeft Press +[push-back-disp] site=dispatch center=(-3.7346,5.7032,-2.9603) mvmt=(0.2972,0.2995,-0.0923) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.235,5.797,91.060) lpos=(-3.735,5.703,-2.960) lprev=(-4.032,5.404,-2.868) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.7347,5.7032,-2.9403) mvmt=(0.2972,0.2995,-0.0923) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4249,6.0153,-3.0697) mvmt=(0.3097,0.3121,-0.1094) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.925,5.485,90.950) lpos=(-3.425,6.015,-3.070) lprev=(-3.735,5.703,-2.960) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.4249,6.0153,-3.0497) mvmt=(0.3097,0.3121,-0.1094) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1466,6.2957,-3.1795) mvmt=(0.2784,0.2805,-0.1098) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.647,5.204,90.840) lpos=(-3.147,6.296,-3.180) lprev=(-3.425,6.015,-3.070) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.1466,6.2957,-3.1595) mvmt=(0.2784,0.2805,-0.1098) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8345,6.6101,-3.3156) mvmt=(0.3121,0.3144,-0.1361) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.334,4.890,90.704) lpos=(-2.834,6.610,-3.316) lprev=(-3.147,6.296,-3.180) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.8345,6.6101,-3.2956) mvmt=(0.3121,0.3144,-0.1361) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5507,6.8961,-3.4513) mvmt=(0.2838,0.2859,-0.1356) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.051,4.604,90.569) lpos=(-2.551,6.896,-3.451) lprev=(-2.834,6.610,-3.316) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.5507,6.8961,-3.4313) mvmt=(0.2838,0.2859,-0.1356) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2426,7.2065,-3.6114) mvmt=(0.3081,0.3105,-0.1601) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.743,4.293,90.409) lpos=(-2.243,7.207,-3.611) lprev=(-2.551,6.896,-3.451) r=0.480 result=Adjusted n=(0.000,0.000,1.000) sides=Landblock +[push-back-disp] site=dispatch center=(-2.2426,7.2065,-3.6114) mvmt=(0.3081,0.3105,-0.1601) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.2426,7.2065,-3.6114) out=(-2.4184,7.0293,-3.5200) delta=(-0.1759,-0.1772,0.0914) deltaMag=0.2658 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.4293 dpPos=0.3886 dpMove=-0.1601 iDist=0.5707 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.743,4.293,90.409) lpos=(-2.243,7.207,-3.611) lprev=(-2.551,6.896,-3.451) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.4184,7.0293,-3.5200) mvmt=(0.1323,0.1333,-0.0687) collide=True insertType=0 objState=0x300 winterp=0.4293 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.918,4.471,90.500) lpos=(-2.418,7.029,-3.520) lprev=(-2.551,6.896,-3.451) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.4184,7.0293,-3.5000) mvmt=(0.1323,0.1333,-0.0687) collide=True insertType=0 objState=0x300 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(-2.4184,7.0293,-3.5200) mvmt=(0.1323,0.1333,-0.0687) collide=False insertType=1 objState=0x300 winterp=0.4293 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.918,4.471,90.500) lpos=(-2.418,7.029,-3.520) lprev=(-2.551,6.896,-3.451) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.4184,7.0293,-3.5000) mvmt=(0.1323,0.1333,-0.0687) collide=False insertType=1 objState=0x300 winterp=0.4293 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.4430,7.4422,-3.5200) mvmt=(-0.0246,0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.943,4.058,90.500) lpos=(-2.443,7.442,-3.520) lprev=(-2.418,7.029,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.4430,7.4422,-3.5000) mvmt=(-0.0246,0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4430,7.4422,-4.2700) mvmt=(-0.0246,0.4128,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.4430,7.4422,-4.2700) out=(-2.4430,7.4422,-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.943,4.058,89.750) lpos=(-2.443,7.442,-4.270) lprev=(-2.418,7.029,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.4430,7.4422,-3.5200) mvmt=(-0.0246,0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.943,4.058,90.500) lpos=(-2.443,7.442,-3.520) lprev=(-2.418,7.029,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.4430,7.4422,-3.5000) mvmt=(-0.0246,0.4128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.4994,7.8425,-3.5200) mvmt=(-0.0564,0.4003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.999,3.658,90.500) lpos=(-2.499,7.842,-3.520) lprev=(-2.443,7.442,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.4994,7.8425,-3.5000) mvmt=(-0.0564,0.4003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4994,7.8425,-4.2700) mvmt=(-0.0564,0.4003,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.4994,7.8425,-4.2700) out=(-2.4994,7.8425,-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.999,3.658,89.750) lpos=(-2.499,7.842,-4.270) lprev=(-2.443,7.442,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.4994,7.8425,-3.5200) mvmt=(-0.0564,0.4003,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.999,3.658,90.500) lpos=(-2.499,7.842,-3.520) lprev=(-2.443,7.442,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.4994,7.8425,-3.5000) mvmt=(-0.0564,0.4003,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.5901,8.2448,-3.5200) mvmt=(-0.0908,0.4023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.090,3.255,90.500) lpos=(-2.590,8.245,-3.520) lprev=(-2.499,7.842,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.5901,8.2448,-3.5000) mvmt=(-0.0908,0.4023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5901,8.2448,-4.2700) mvmt=(-0.0908,0.4023,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.5901,8.2448,-4.2700) out=(-2.5901,8.2448,-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.090,3.255,89.750) lpos=(-2.590,8.245,-4.270) lprev=(-2.499,7.842,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.5901,8.2448,-3.5200) mvmt=(-0.0908,0.4023,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.090,3.255,90.500) lpos=(-2.590,8.245,-3.520) lprev=(-2.499,7.842,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.5901,8.2448,-3.5000) mvmt=(-0.0908,0.4023,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7056,8.6425,-3.5200) mvmt=(-0.1154,0.3977,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.206,2.858,90.500) lpos=(-2.706,8.642,-3.520) lprev=(-2.590,8.245,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2500,-2.6506,0.4925) mvmt=(-0.3977,-0.1154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7056,8.6425,-3.5000) mvmt=(-0.1154,0.3977,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7056,8.6425,-4.2700) mvmt=(-0.1154,0.3977,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7056,8.6425,-4.2700) out=(-2.7056,8.6425,-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.206,2.858,89.750) lpos=(-2.706,8.642,-4.270) lprev=(-2.590,8.245,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7056,8.6425,-3.5200) mvmt=(-0.1154,0.3977,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.206,2.858,90.500) lpos=(-2.706,8.642,-3.520) lprev=(-2.590,8.245,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2500,-2.6506,0.4925) mvmt=(-0.3977,-0.1154,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7056,8.6425,-3.5000) mvmt=(-0.1154,0.3977,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.8212,9.0407,-3.5200) mvmt=(-0.1156,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.321,2.459,90.500) lpos=(-2.821,9.041,-3.520) lprev=(-2.706,8.642,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8518,-2.7662,0.4925) mvmt=(-0.3983,-0.1156,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8212,9.0407,-3.5000) mvmt=(-0.1156,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8212,9.0407,-4.2700) mvmt=(-0.1156,0.3983,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.8212,9.0407,-4.2700) out=(-2.8212,9.0407,-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.321,2.459,89.750) lpos=(-2.821,9.041,-4.270) lprev=(-2.706,8.642,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.8212,9.0407,-3.5200) mvmt=(-0.1156,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.321,2.459,90.500) lpos=(-2.821,9.041,-3.520) lprev=(-2.706,8.642,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8518,-2.7662,0.4925) mvmt=(-0.3983,-0.1156,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8212,9.0407,-3.5000) mvmt=(-0.1156,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.9395,9.4483,-3.5200) mvmt=(-0.1183,0.4076,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9395,9.4483,-3.5200) mvmt=(-0.1183,0.4076,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.9395,9.4483,-3.5200) out=(-2.9395,9.4483,-3.5176) delta=(0.0000,0.0000,0.0024) deltaMag=0.0024 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.9960 dpPos=0.4777 dpMove=-0.5759 iDist=0.0040 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.439,2.052,90.500) lpos=(-2.939,9.448,-3.520) lprev=(-2.821,9.041,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.9395,9.4483,-3.5176) mvmt=(-0.1183,0.4076,0.0024) collide=False insertType=0 objState=0x303 winterp=0.9960 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.439,2.052,90.502) lpos=(-2.939,9.448,-3.518) lprev=(-2.821,9.041,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2917,-4.3245,0.4949) mvmt=(-0.4076,-0.1183,0.0024) collide=False insertType=0 objState=0x303 winterp=0.9960 return=-1 +[push-back-disp] site=dispatch center=(2.4442,-2.8845,0.4949) mvmt=(-0.4076,-0.1183,0.0024) collide=False insertType=0 objState=0x303 winterp=0.9960 return=-1 +[push-back-disp] site=dispatch center=(-2.9395,9.4483,-3.4976) mvmt=(-0.1183,0.4076,0.0024) collide=False insertType=0 objState=0x303 winterp=0.9960 return=-1 +[push-back-disp] site=dispatch center=(-2.9395,9.4483,-3.5176) mvmt=(-0.1183,0.4076,0.0024) collide=False insertType=1 objState=0x303 winterp=0.9960 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.439,2.052,90.502) lpos=(-2.939,9.448,-3.518) lprev=(-2.821,9.041,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2917,-4.3245,0.4949) mvmt=(-0.4076,-0.1183,0.0024) collide=False insertType=1 objState=0x303 winterp=0.9960 return=-1 +[push-back-disp] site=dispatch center=(2.4442,-2.8845,0.4949) mvmt=(-0.4076,-0.1183,0.0024) collide=False insertType=1 objState=0x303 winterp=0.9960 return=-1 +[push-back-disp] site=dispatch center=(-2.9395,9.4483,-3.4976) mvmt=(-0.1183,0.4076,0.0024) collide=False insertType=1 objState=0x303 winterp=0.9960 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.439,2.052,90.500) lpos=(-2.939,9.448,-3.520) lprev=(-2.821,9.041,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2917,-4.3245,0.4949) mvmt=(-0.4076,-0.1183,0.0024) collide=False insertType=0 objState=0x303 winterp=0.9960 return=-1 +[push-back-disp] site=dispatch center=(2.4442,-2.8845,0.4949) mvmt=(-0.4076,-0.1183,0.0024) collide=False insertType=0 objState=0x303 winterp=0.9960 return=-1 +[push-back-disp] site=dispatch center=(-2.9395,9.4483,-3.4976) mvmt=(-0.1183,0.4076,0.0024) collide=False insertType=0 objState=0x303 winterp=0.9960 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.0513,9.8664,-3.4849) mvmt=(-0.1118,0.4181,0.0327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.551,1.634,90.535) lpos=(-3.051,9.866,-3.485) lprev=(-2.939,9.448,-3.518) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8736,-4.4363,0.5276) mvmt=(-0.4181,-0.1118,0.0327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0261,-2.9963,0.5276) mvmt=(-0.4181,-0.1118,0.0327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0513,9.8664,-3.4649) mvmt=(-0.1118,0.4181,0.0327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0513,9.8664,-4.2349) mvmt=(-0.1118,0.4181,-0.7173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.0513,9.8664,-4.2349) out=(-3.0513,9.8664,-3.5200) delta=(0.0000,0.0000,0.7149) deltaMag=0.7149 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0468 dpPos=-0.2349 dpMove=-0.7500 iDist=0.9532 applied=True +[push-back] site=adjust_sphere in=(-3.0513,9.8664,-3.5200) out=(-3.0513,9.8664,-3.4849) delta=(0.0000,0.0000,0.0351) deltaMag=0.0351 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=0.0468->0.0446 dpPos=0.4463 dpMove=-0.7199 iDist=0.0468 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(133.551,1.634,89.785) lpos=(-3.051,9.866,-4.235) lprev=(-2.939,9.448,-3.518) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.0513,9.8664,-3.4849) mvmt=(-0.1118,0.4181,0.0327) collide=False insertType=0 objState=0x303 winterp=0.0446 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.551,1.634,90.535) lpos=(-3.051,9.866,-3.485) lprev=(-2.939,9.448,-3.518) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8736,-4.4363,0.5276) mvmt=(-0.4181,-0.1118,0.0327) collide=False insertType=0 objState=0x303 winterp=0.0446 return=-1 +[push-back-disp] site=dispatch center=(2.0261,-2.9963,0.5276) mvmt=(-0.4181,-0.1118,0.0327) collide=False insertType=0 objState=0x303 winterp=0.0446 return=-1 +[push-back-disp] site=dispatch center=(-3.0513,9.8664,-3.4649) mvmt=(-0.1118,0.4181,0.0327) collide=False insertType=0 objState=0x303 winterp=0.0446 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.1613,10.2777,-3.4528) mvmt=(-0.1100,0.4112,0.0321) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.661,1.222,90.567) lpos=(-3.161,10.278,-3.453) lprev=(-3.051,9.866,-3.485) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4623,-4.5463,0.5597) mvmt=(-0.4112,-0.1100,0.0321) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6148,-3.1063,0.5597) mvmt=(-0.4112,-0.1100,0.0321) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1613,10.2777,-3.4328) mvmt=(-0.1100,0.4112,0.0321) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1613,10.2777,-4.2028) mvmt=(-0.1100,0.4112,-0.7179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.1613,10.2777,-4.2028) out=(-3.1613,10.2777,-3.5200) delta=(0.0000,0.0000,0.6828) deltaMag=0.6828 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0896 dpPos=-0.2028 dpMove=-0.7500 iDist=0.9104 applied=True +[push-back] site=adjust_sphere in=(-3.1613,10.2777,-3.5200) out=(-3.1613,10.2777,-3.4528) delta=(0.0000,0.0000,0.0672) deltaMag=0.0672 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=0.0896->0.0816 dpPos=0.4155 dpMove=-0.7199 iDist=0.0896 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(133.661,1.222,89.817) lpos=(-3.161,10.278,-4.203) lprev=(-3.051,9.866,-3.485) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.1613,10.2777,-3.4528) mvmt=(-0.1100,0.4112,0.0321) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.661,1.222,90.567) lpos=(-3.161,10.278,-3.453) lprev=(-3.051,9.866,-3.485) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4623,-4.5463,0.5597) mvmt=(-0.4112,-0.1100,0.0321) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[push-back-disp] site=dispatch center=(1.6148,-3.1063,0.5597) mvmt=(-0.4112,-0.1100,0.0321) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[push-back-disp] site=dispatch center=(-3.1613,10.2777,-3.4328) mvmt=(-0.1100,0.4112,0.0321) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.2698,10.6834,-3.4211) mvmt=(-0.1085,0.4057,0.0317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.770,0.817,90.599) lpos=(-3.270,10.683,-3.421) lprev=(-3.161,10.278,-3.453) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2091,-3.2148,0.5914) mvmt=(-0.4057,-0.1085,0.0317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2698,10.6834,-3.4011) mvmt=(-0.1085,0.4057,0.0317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2698,10.6834,-4.1711) mvmt=(-0.1085,0.4057,-0.7183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.2698,10.6834,-4.1711) out=(-3.2698,10.6834,-3.5200) delta=(0.0000,0.0000,0.6511) deltaMag=0.6511 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.1319 dpPos=-0.1711 dpMove=-0.7500 iDist=0.8681 applied=True +[push-back] site=adjust_sphere in=(-3.2698,10.6834,-3.5200) out=(-3.2698,10.6834,-3.4211) delta=(0.0000,0.0000,0.0989) deltaMag=0.0989 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=0.1319->0.1145 dpPos=0.3850 dpMove=-0.7199 iDist=0.1319 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(133.770,0.817,89.849) lpos=(-3.270,10.683,-4.171) lprev=(-3.161,10.278,-3.453) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.2698,10.6834,-3.4211) mvmt=(-0.1085,0.4057,0.0317) collide=False insertType=0 objState=0x303 winterp=0.1145 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.770,0.817,90.599) lpos=(-3.270,10.683,-3.421) lprev=(-3.161,10.278,-3.453) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2091,-3.2148,0.5914) mvmt=(-0.4057,-0.1085,0.0317) collide=False insertType=0 objState=0x303 winterp=0.1145 return=-1 +[push-back-disp] site=dispatch center=(-3.2698,10.6834,-3.4011) mvmt=(-0.1085,0.4057,0.0317) collide=False insertType=0 objState=0x303 winterp=0.1145 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.5697,10.4272,-3.3334) mvmt=(-0.2999,-0.2562,0.0877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.070,1.073,90.687) lpos=(-3.570,10.427,-3.333) lprev=(-3.270,10.683,-3.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4653,-3.5147,0.6791) mvmt=(0.2562,-0.2999,0.0877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5697,10.4272,-3.3134) mvmt=(-0.2999,-0.2562,0.0877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5697,10.4272,-4.0834) mvmt=(-0.2999,-0.2562,-0.6623) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.5697,10.4272,-4.0834) out=(-3.5697,10.4272,-3.3334) 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.070,1.073,89.937) lpos=(-3.570,10.427,-4.083) lprev=(-3.270,10.683,-3.421) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.5697,10.4272,-3.3334) mvmt=(-0.2999,-0.2562,0.0877) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.070,1.073,90.687) lpos=(-3.570,10.427,-3.333) lprev=(-3.270,10.683,-3.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4653,-3.5147,0.6791) mvmt=(0.2562,-0.2999,0.0877) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5697,10.4272,-3.3134) mvmt=(-0.2999,-0.2562,0.0877) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.8516,10.1421,-3.2510) mvmt=(-0.2820,-0.2851,0.0824) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.352,1.358,90.769) lpos=(-3.852,10.142,-3.251) lprev=(-3.570,10.427,-3.333) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7504,-3.7966,0.7615) mvmt=(0.2851,-0.2820,0.0824) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8516,10.1421,-3.2310) mvmt=(-0.2820,-0.2851,0.0824) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8516,10.1421,-4.0010) mvmt=(-0.2820,-0.2851,-0.6676) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.8516,10.1421,-4.0010) out=(-3.8516,10.1421,-3.2510) 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.352,1.358,90.019) lpos=(-3.852,10.142,-4.001) lprev=(-3.570,10.427,-3.333) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.8516,10.1421,-3.2510) mvmt=(-0.2820,-0.2851,0.0824) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.352,1.358,90.769) lpos=(-3.852,10.142,-3.251) lprev=(-3.570,10.427,-3.333) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7504,-3.7966,0.7615) mvmt=(0.2851,-0.2820,0.0824) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8516,10.1421,-3.2310) mvmt=(-0.2820,-0.2851,0.0824) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.1135,9.8288,-3.1744) mvmt=(-0.2619,-0.3133,0.0766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.614,1.671,90.846) lpos=(-4.114,9.829,-3.174) lprev=(-3.852,10.142,-3.251) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0637,-4.0585,0.8381) mvmt=(0.3133,-0.2619,0.0766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.1135,9.8288,-3.1544) mvmt=(-0.2619,-0.3133,0.0766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.1135,9.8288,-3.9244) mvmt=(-0.2619,-0.3133,-0.6734) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.1135,9.8288,-3.9244) out=(-4.1135,9.8288,-3.1744) 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.614,1.671,90.096) lpos=(-4.114,9.829,-3.924) lprev=(-3.852,10.142,-3.251) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.1135,9.8288,-3.1744) mvmt=(-0.2619,-0.3133,0.0766) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.614,1.671,90.846) lpos=(-4.114,9.829,-3.174) lprev=(-3.852,10.142,-3.251) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0637,-4.0585,0.8381) mvmt=(0.3133,-0.2619,0.0766) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.1135,9.8288,-3.1544) mvmt=(-0.2619,-0.3133,0.0766) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.3575,9.4801,-3.1031) mvmt=(-0.2440,-0.3487,0.0713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.858,2.020,90.917) lpos=(-4.358,9.480,-3.103) lprev=(-4.114,9.829,-3.174) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.3575,9.4801,-3.0831) mvmt=(-0.2440,-0.3487,0.0713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.3575,9.4801,-3.8531) mvmt=(-0.2440,-0.3487,-0.6787) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.3575,9.4801,-3.8531) out=(-4.3575,9.4801,-3.1031) 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.858,2.020,90.167) lpos=(-4.358,9.480,-3.853) lprev=(-4.114,9.829,-3.174) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.3575,9.4801,-3.1031) mvmt=(-0.2440,-0.3487,0.0713) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.858,2.020,90.917) lpos=(-4.358,9.480,-3.103) lprev=(-4.114,9.829,-3.174) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.3575,9.4801,-3.0831) mvmt=(-0.2440,-0.3487,0.0713) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.5737,9.1076,-3.0399) mvmt=(-0.2162,-0.3725,0.0632) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.074,2.392,90.980) lpos=(-4.574,9.108,-3.040) lprev=(-4.358,9.480,-3.103) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5737,9.1076,-3.0199) mvmt=(-0.2162,-0.3725,0.0632) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.5737,9.1076,-3.7899) mvmt=(-0.2162,-0.3725,-0.6868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.5737,9.1076,-3.7899) out=(-4.5737,9.1076,-3.0399) 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.074,2.392,90.230) lpos=(-4.574,9.108,-3.790) lprev=(-4.358,9.480,-3.103) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.5737,9.1076,-3.0399) mvmt=(-0.2162,-0.3725,0.0632) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.074,2.392,90.980) lpos=(-4.574,9.108,-3.040) lprev=(-4.358,9.480,-3.103) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5737,9.1076,-3.0199) mvmt=(-0.2162,-0.3725,0.0632) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.7613,8.7101,-2.9851) mvmt=(-0.1876,-0.3975,0.0548) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.261,2.790,91.035) lpos=(-4.761,8.710,-2.985) lprev=(-4.574,9.108,-3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.7613,8.7101,-2.9651) mvmt=(-0.1876,-0.3975,0.0548) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.7613,8.7101,-3.7351) mvmt=(-0.1876,-0.3975,-0.6952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.7613,8.7101,-3.7351) out=(-4.7613,8.7101,-2.9851) 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 +[cp-write] ContactPlane: n=(-0.281,0.000,0.960) D=-48.949 -> n=(-0.281,0.000,0.960) D=-48.949 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(-0.281,0.000,0.960) D=-48.949 -> n=(-0.281,0.000,0.960) D=-48.949 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(135.261,2.790,90.285) lpos=(-4.761,8.710,-3.735) lprev=(-4.574,9.108,-3.040) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.7613,8.7101,-2.9851) mvmt=(-0.1876,-0.3975,0.0548) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.261,2.790,91.035) lpos=(-4.761,8.710,-2.985) lprev=(-4.574,9.108,-3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.7613,8.7101,-2.9651) mvmt=(-0.1876,-0.3975,0.0548) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.9169,8.2915,-2.9396) mvmt=(-0.1556,-0.4186,0.0455) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.417,3.209,91.080) lpos=(-4.917,8.291,-2.940) lprev=(-4.761,8.710,-2.985) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.9169,8.2915,-2.9196) mvmt=(-0.1556,-0.4186,0.0455) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.9169,8.2915,-3.6896) mvmt=(-0.1556,-0.4186,-0.7045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.9169,8.2915,-3.6896) out=(-4.9169,8.2915,-2.9396) 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.417,3.209,90.330) lpos=(-4.917,8.291,-3.690) lprev=(-4.761,8.710,-2.985) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.9169,8.2915,-2.9396) mvmt=(-0.1556,-0.4186,0.0455) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.417,3.209,91.080) lpos=(-4.917,8.291,-2.940) lprev=(-4.761,8.710,-2.985) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.9169,8.2915,-2.9196) mvmt=(-0.1556,-0.4186,0.0455) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.0385,7.9075,-2.9040) mvmt=(-0.1216,-0.3840,0.0355) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.539,3.593,91.116) lpos=(-5.039,7.907,-2.904) lprev=(-4.917,8.291,-2.940) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0385,7.9075,-2.8840) mvmt=(-0.1216,-0.3840,0.0355) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.0385,7.9075,-3.6540) mvmt=(-0.1216,-0.3840,-0.7145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.0385,7.9075,-3.6540) out=(-5.0385,7.9075,-2.9040) 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.539,3.593,90.366) lpos=(-5.039,7.907,-3.654) lprev=(-4.917,8.291,-2.940) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.0385,7.9075,-2.9040) mvmt=(-0.1216,-0.3840,0.0355) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.539,3.593,91.116) lpos=(-5.039,7.907,-2.904) lprev=(-4.917,8.291,-2.940) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0385,7.9075,-2.8840) mvmt=(-0.1216,-0.3840,0.0355) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.1735,7.4813,-2.8646) mvmt=(-0.1350,-0.4262,0.0395) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.673,4.019,91.155) lpos=(-5.173,7.481,-2.865) lprev=(-5.039,7.907,-2.904) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1735,7.4813,-2.8446) mvmt=(-0.1350,-0.4262,0.0395) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1735,7.4813,-3.6146) mvmt=(-0.1350,-0.4262,-0.7105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.1735,7.4813,-3.6146) out=(-5.1735,7.4813,-2.8646) 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.673,4.019,90.405) lpos=(-5.173,7.481,-3.615) lprev=(-5.039,7.907,-2.904) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.1735,7.4813,-2.8646) mvmt=(-0.1350,-0.4262,0.0395) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.673,4.019,91.155) lpos=(-5.173,7.481,-2.865) lprev=(-5.039,7.907,-2.904) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1735,7.4813,-2.8446) mvmt=(-0.1350,-0.4262,0.0395) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.3108,7.0477,-2.8244) mvmt=(-0.1373,-0.4336,0.0401) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.811,4.452,91.196) lpos=(-5.311,7.048,-2.824) lprev=(-5.173,7.481,-2.865) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3108,7.0477,-2.8244) mvmt=(-0.1373,-0.4336,0.0401) 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.3108,7.0477,-2.8044) mvmt=(-0.1373,-0.4336,0.0401) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3108,7.0477,-3.5744) mvmt=(-0.1373,-0.4336,-0.7099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3108,7.0477,-3.5744) out=(-5.3108,7.0477,-2.8244) 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.811,4.452,90.446) lpos=(-5.311,7.048,-3.574) lprev=(-5.173,7.481,-2.865) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3108,7.0477,-2.8244) mvmt=(-0.1373,-0.4336,0.0401) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.811,4.452,91.196) lpos=(-5.311,7.048,-2.824) lprev=(-5.173,7.481,-2.865) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3108,7.0477,-2.8244) mvmt=(-0.1373,-0.4336,0.0401) 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.3108,7.0477,-2.8044) mvmt=(-0.1373,-0.4336,0.0401) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.4291,6.6742,-2.7899) mvmt=(-0.1183,-0.3736,0.0346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.929,4.826,91.230) lpos=(-5.429,6.674,-2.790) lprev=(-5.311,7.048,-2.824) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.4291,6.6742,-2.7899) mvmt=(-0.1183,-0.3736,0.0346) 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.2742,2.6671,0.2346) mvmt=(0.2972,-0.2554,0.0346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4291,6.6742,-2.7699) mvmt=(-0.1183,-0.3736,0.0346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4291,6.6742,-3.5399) mvmt=(-0.1183,-0.3736,-0.7154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.4291,6.6742,-3.5399) out=(-5.4291,6.6742,-2.7899) 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.929,4.826,90.480) lpos=(-5.429,6.674,-3.540) lprev=(-5.311,7.048,-2.824) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.4291,6.6742,-2.7899) mvmt=(-0.1183,-0.3736,0.0346) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.929,4.826,91.230) lpos=(-5.429,6.674,-2.790) lprev=(-5.311,7.048,-2.824) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.4291,6.6742,-2.7899) mvmt=(-0.1183,-0.3736,0.0346) 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.2742,2.6671,0.2346) mvmt=(0.2972,-0.2554,0.0346) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4291,6.6742,-2.7699) mvmt=(-0.1183,-0.3736,0.0346) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.5661,6.2417,-2.7498) mvmt=(-0.1370,-0.4324,0.0400) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.066,5.258,91.270) lpos=(-5.566,6.242,-2.750) lprev=(-5.429,6.674,-2.790) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.5661,6.2417,-2.7498) mvmt=(-0.1370,-0.4324,0.0400) 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=(4.2589,2.0937,-1.1246) mvmt=(-0.1370,-0.4324,0.0400) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6183,2.3715,0.2747) mvmt=(0.3440,-0.2956,0.0400) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5661,6.2417,-2.7298) mvmt=(-0.1370,-0.4324,0.0400) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5661,6.2417,-3.4998) mvmt=(-0.1370,-0.4324,-0.7100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.5661,6.2417,-3.4998) out=(-5.5661,6.2417,-2.7498) 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.066,5.258,90.520) lpos=(-5.566,6.242,-3.500) lprev=(-5.429,6.674,-2.790) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.5661,6.2417,-2.7498) mvmt=(-0.1370,-0.4324,0.0400) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.066,5.258,91.270) lpos=(-5.566,6.242,-2.750) lprev=(-5.429,6.674,-2.790) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.5661,6.2417,-2.7498) mvmt=(-0.1370,-0.4324,0.0400) 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=(4.2589,2.0937,-1.1246) mvmt=(-0.1370,-0.4324,0.0400) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6183,2.3715,0.2747) mvmt=(0.3440,-0.2956,0.0400) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5661,6.2417,-2.7298) mvmt=(-0.1370,-0.4324,0.0400) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.7105,5.8787,-2.7076) mvmt=(-0.1444,-0.3630,0.0422) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.211,5.621,91.312) lpos=(-5.711,5.879,-2.708) lprev=(-5.566,6.242,-2.750) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7105,5.8787,-2.7076) mvmt=(-0.1444,-0.3630,0.0422) 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=(4.1145,1.7307,-1.0824) mvmt=(-0.1444,-0.3630,0.0422) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8955,2.0962,0.3169) mvmt=(0.2772,-0.2753,0.0422) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7105,5.8787,-2.6876) mvmt=(-0.1444,-0.3630,0.0422) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7105,5.8787,-3.4576) mvmt=(-0.1444,-0.3630,-0.7078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.7105,5.8787,-3.4576) out=(-5.7105,5.8787,-2.7076) 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.211,5.621,90.562) lpos=(-5.711,5.879,-3.458) lprev=(-5.566,6.242,-2.750) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.7105,5.8787,-2.7076) mvmt=(-0.1444,-0.3630,0.0422) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.211,5.621,91.312) lpos=(-5.711,5.879,-2.708) lprev=(-5.566,6.242,-2.750) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7105,5.8787,-2.7076) mvmt=(-0.1444,-0.3630,0.0422) 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=(4.1145,1.7307,-1.0824) mvmt=(-0.1444,-0.3630,0.0422) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8955,2.0962,0.3169) mvmt=(0.2772,-0.2753,0.0422) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7105,5.8787,-2.6876) mvmt=(-0.1444,-0.3630,0.0422) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.8751,5.4651,-2.6595) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.375,6.035,91.360) lpos=(-5.875,5.465,-2.660) lprev=(-5.711,5.879,-2.708) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.8751,5.4651,-2.6595) mvmt=(-0.1646,-0.4136,0.0481) 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=(3.9499,1.3171,-1.0343) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9249,1.0771,-1.1393) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2114,1.7826,0.3650) mvmt=(0.3159,-0.3136,0.0481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.8751,5.4651,-2.6395) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.8751,5.4651,-3.4095) mvmt=(-0.1646,-0.4136,-0.7019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.8751,5.4651,-3.4095) out=(-5.8751,5.4651,-2.6595) 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 +[cp-write] ContactPlane: n=(-0.281,0.000,0.960) D=-48.949 -> n=(-0.281,0.000,0.960) D=-48.949 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(-0.281,0.000,0.960) D=-48.949 -> n=(-0.281,0.000,0.960) D=-48.949 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(136.375,6.035,90.610) lpos=(-5.875,5.465,-3.410) lprev=(-5.711,5.879,-2.708) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.8751,5.4651,-2.6595) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.375,6.035,91.360) lpos=(-5.875,5.465,-2.660) lprev=(-5.711,5.879,-2.708) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.8751,5.4651,-2.6595) mvmt=(-0.1646,-0.4136,0.0481) 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=(3.9499,1.3171,-1.0343) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9249,1.0771,-1.1393) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2114,1.7826,0.3650) mvmt=(0.3159,-0.3136,0.0481) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.8751,5.4651,-2.6395) mvmt=(-0.1646,-0.4136,0.0481) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.0393,5.0525,-2.6115) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.539,6.447,91.408) lpos=(-6.039,5.053,-2.612) lprev=(-5.875,5.465,-2.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0393,5.0525,-2.6115) mvmt=(-0.1642,-0.4126,0.0480) 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=(3.7857,0.9045,-0.9863) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7607,0.6645,-1.0913) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5265,1.4697,0.4130) mvmt=(0.3151,-0.3129,0.0480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0393,5.0525,-2.5915) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0393,5.0525,-3.3615) mvmt=(-0.1642,-0.4126,-0.7020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.0393,5.0525,-3.3615) out=(-6.0393,5.0525,-2.6115) 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.539,6.447,90.658) lpos=(-6.039,5.053,-3.362) lprev=(-5.875,5.465,-2.660) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.0393,5.0525,-2.6115) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.539,6.447,91.408) lpos=(-6.039,5.053,-2.612) lprev=(-5.875,5.465,-2.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0393,5.0525,-2.6115) mvmt=(-0.1642,-0.4126,0.0480) 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=(3.7857,0.9045,-0.9863) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7607,0.6645,-1.0913) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5265,1.4697,0.4130) mvmt=(0.3151,-0.3129,0.0480) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0393,5.0525,-2.5915) mvmt=(-0.1642,-0.4126,0.0480) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.1858,4.6843,-2.5687) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.686,6.816,91.451) lpos=(-6.186,4.684,-2.569) lprev=(-6.039,5.053,-2.612) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.1858,4.6843,-2.5687) mvmt=(-0.1465,-0.3683,0.0428) 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=(3.6392,0.5362,-0.9435) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6142,0.2962,-1.0485) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8077,1.1904,0.4558) mvmt=(0.2813,-0.2793,0.0428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.1858,4.6843,-2.5487) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.1858,4.6843,-3.3187) mvmt=(-0.1465,-0.3683,-0.7072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.1858,4.6843,-3.3187) out=(-6.1858,4.6843,-2.5687) 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.686,6.816,90.701) lpos=(-6.186,4.684,-3.319) lprev=(-6.039,5.053,-2.612) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.1858,4.6843,-2.5687) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.686,6.816,91.451) lpos=(-6.186,4.684,-2.569) lprev=(-6.039,5.053,-2.612) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.1858,4.6843,-2.5687) mvmt=(-0.1465,-0.3683,0.0428) 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=(3.6392,0.5362,-0.9435) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6142,0.2962,-1.0485) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8077,1.1904,0.4558) mvmt=(0.2813,-0.2793,0.0428) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.1858,4.6843,-2.5487) mvmt=(-0.1465,-0.3683,0.0428) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.3306,4.3202,-2.5263) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.831,7.180,91.494) lpos=(-6.331,4.320,-2.526) lprev=(-6.186,4.684,-2.569) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.3306,4.3202,-2.5263) mvmt=(-0.1449,-0.3640,0.0423) 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=(3.4944,0.1722,-0.9011) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4694,-0.0678,-1.0061) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0858,0.9144,0.4982) mvmt=(0.2780,-0.2761,0.0423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3306,4.3202,-2.5063) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3306,4.3202,-3.2763) mvmt=(-0.1449,-0.3640,-0.7077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.3306,4.3202,-3.2763) out=(-6.3306,4.3202,-2.5263) 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.831,7.180,90.744) lpos=(-6.331,4.320,-3.276) lprev=(-6.186,4.684,-2.569) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.3306,4.3202,-2.5263) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.831,7.180,91.494) lpos=(-6.331,4.320,-2.526) lprev=(-6.186,4.684,-2.569) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.3306,4.3202,-2.5263) mvmt=(-0.1449,-0.3640,0.0423) 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=(3.4944,0.1722,-0.9011) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4694,-0.0678,-1.0061) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0858,0.9144,0.4982) mvmt=(0.2780,-0.2761,0.0423) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3306,4.3202,-2.5063) mvmt=(-0.1449,-0.3640,0.0423) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[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:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.4969,3.9024,-2.4778) mvmt=(-0.1662,-0.4178,0.0486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.997,7.598,91.542) lpos=(-6.497,3.902,-2.478) lprev=(-6.331,4.320,-2.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3281,-0.2456,-0.8526) mvmt=(-0.1662,-0.4178,0.0486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3031,-0.4856,-0.9576) mvmt=(-0.1662,-0.4178,0.0486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4048,0.5976,0.5467) mvmt=(0.3191,-0.3168,0.0486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.4969,3.9024,-2.4578) mvmt=(-0.1662,-0.4178,0.0486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.4969,3.9024,-3.2278) mvmt=(-0.1662,-0.4178,-0.7014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.4969,3.9024,-3.2278) out=(-6.4969,3.9024,-2.5700) delta=(0.0000,0.0000,0.6578) deltaMag=0.6578 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1230 dpPos=-0.1778 dpMove=-0.7500 iDist=0.8770 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.997,7.598,90.792) lpos=(-6.497,3.902,-3.228) lprev=(-6.331,4.320,-2.526) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.4969,3.9024,-2.5700) mvmt=(-0.1662,-0.4178,-0.0437) collide=False insertType=0 objState=0x303 winterp=0.1230 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.997,7.598,91.450) lpos=(-6.497,3.902,-2.570) lprev=(-6.331,4.320,-2.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3281,-0.2456,-0.9448) mvmt=(-0.1662,-0.4178,-0.0437) collide=False insertType=0 objState=0x303 winterp=0.1230 return=-1 +[push-back-disp] site=dispatch center=(4.3031,-0.4856,-1.0498) mvmt=(-0.1662,-0.4178,-0.0437) collide=False insertType=0 objState=0x303 winterp=0.1230 return=-1 +[push-back-disp] site=dispatch center=(2.4048,0.5976,0.4545) mvmt=(0.3191,-0.3168,-0.0437) collide=False insertType=0 objState=0x303 winterp=0.1230 return=-1 +[push-back-disp] site=dispatch center=(-6.4969,3.9024,-2.5500) mvmt=(-0.1662,-0.4178,-0.0437) collide=False insertType=0 objState=0x303 winterp=0.1230 return=-1 +[cell-transit] 0xA9B40148 -> 0xA9B40147 pos=(136.997,7.598,90.970) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.6790,3.4806,-2.5700) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.179,8.019,91.450) lpos=(-6.679,3.481,-2.570) lprev=(-6.497,3.902,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1460,-0.6674,-0.9448) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1210,-0.9074,-1.0498) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7213,0.2645,0.4545) mvmt=(0.3165,-0.3330,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6790,3.4806,-2.5500) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6790,3.4806,-3.3200) mvmt=(-0.1822,-0.4218,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.6790,3.4806,-3.3200) out=(-6.6790,3.4806,-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.179,8.019,90.700) lpos=(-6.679,3.481,-3.320) lprev=(-6.497,3.902,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.6790,3.4806,-2.5700) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.179,8.019,91.450) lpos=(-6.679,3.481,-2.570) lprev=(-6.497,3.902,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1460,-0.6674,-0.9448) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1210,-0.9074,-1.0498) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7213,0.2645,0.4545) mvmt=(0.3165,-0.3330,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6790,3.4806,-2.5500) mvmt=(-0.1822,-0.4218,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.8622,3.0923,-2.5700) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.362,8.408,91.450) lpos=(-6.862,3.092,-2.570) lprev=(-6.679,3.481,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9628,-1.0557,-0.9448) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9378,-1.2957,-1.0498) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0067,-0.0563,0.4545) mvmt=(0.2853,-0.3208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.8622,3.0923,-2.5500) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.8622,3.0923,-3.3200) mvmt=(-0.1832,-0.3883,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.8622,3.0923,-3.3200) out=(-6.8622,3.0923,-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.362,8.408,90.700) lpos=(-6.862,3.092,-3.320) lprev=(-6.679,3.481,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.8622,3.0923,-2.5700) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.362,8.408,91.450) lpos=(-6.862,3.092,-2.570) lprev=(-6.679,3.481,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9628,-1.0557,-0.9448) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9378,-1.2957,-1.0498) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0067,-0.0563,0.4545) mvmt=(0.2853,-0.3208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.8622,3.0923,-2.5500) mvmt=(-0.1832,-0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.0651,2.7394,-2.5700) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.565,8.761,91.450) lpos=(-7.065,2.739,-2.570) lprev=(-6.862,3.092,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7599,-1.4087,-0.9448) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7349,-1.6487,-1.0498) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2517,-0.3814,0.4545) mvmt=(0.2451,-0.3251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.0651,2.7394,-2.5500) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.0651,2.7394,-3.3200) mvmt=(-0.2029,-0.3530,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.0651,2.7394,-3.3200) out=(-7.0651,2.7394,-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.565,8.761,90.700) lpos=(-7.065,2.739,-3.320) lprev=(-6.862,3.092,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.0651,2.7394,-2.5700) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.565,8.761,91.450) lpos=(-7.065,2.739,-2.570) lprev=(-6.862,3.092,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7599,-1.4087,-0.9448) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7349,-1.6487,-1.0498) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2517,-0.3814,0.4545) mvmt=(0.2451,-0.3251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.0651,2.7394,-2.5500) mvmt=(-0.2029,-0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.4730,2.5380,-2.5700) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.973,8.962,91.450) lpos=(-7.473,2.538,-2.570) lprev=(-7.065,2.739,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3520,-1.6100,-0.9448) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3270,-1.8500,-1.0498) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2769,-0.8356,0.4545) mvmt=(0.0252,-0.4542,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.4730,2.5380,-2.5500) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.4730,2.5380,-3.3200) mvmt=(-0.4079,-0.2014,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.4730,2.5380,-3.3200) out=(-7.4730,2.5380,-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.973,8.962,90.700) lpos=(-7.473,2.538,-3.320) lprev=(-7.065,2.739,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.4730,2.5380,-2.5700) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.973,8.962,91.450) lpos=(-7.473,2.538,-2.570) lprev=(-7.065,2.739,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3520,-1.6100,-0.9448) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3270,-1.8500,-1.0498) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2769,-0.8356,0.4545) mvmt=(0.0252,-0.4542,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.4730,2.5380,-2.5500) mvmt=(-0.4079,-0.2014,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.8721,2.3410,-2.5700) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.372,9.159,91.450) lpos=(-7.872,2.341,-2.570) lprev=(-7.473,2.538,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9529,-1.8070,-0.9448) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9279,-2.0470,-1.0498) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3015,-1.2800,0.4545) mvmt=(0.0246,-0.4444,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8721,2.3410,-2.5500) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8721,2.3410,-3.3200) mvmt=(-0.3991,-0.1970,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.8721,2.3410,-3.3200) out=(-7.8721,2.3410,-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.372,9.159,90.700) lpos=(-7.872,2.341,-3.320) lprev=(-7.473,2.538,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.8721,2.3410,-2.5700) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.372,9.159,91.450) lpos=(-7.872,2.341,-2.570) lprev=(-7.473,2.538,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9529,-1.8070,-0.9448) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9279,-2.0470,-1.0498) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3015,-1.2800,0.4545) mvmt=(0.0246,-0.4444,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8721,2.3410,-2.5500) mvmt=(-0.3991,-0.1970,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.2702,2.1445,-2.5700) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.770,9.356,91.450) lpos=(-8.270,2.144,-2.570) lprev=(-7.872,2.341,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5548,-2.0036,-0.9448) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5298,-2.2436,-1.0498) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3261,-1.7233,0.4545) mvmt=(0.0246,-0.4433,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.2702,2.1445,-2.5500) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.2702,2.1445,-3.3200) mvmt=(-0.3981,-0.1965,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.2702,2.1445,-3.3200) out=(-8.2702,2.1445,-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.770,9.356,90.700) lpos=(-8.270,2.144,-3.320) lprev=(-7.872,2.341,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.2702,2.1445,-2.5700) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.770,9.356,91.450) lpos=(-8.270,2.144,-2.570) lprev=(-7.872,2.341,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5548,-2.0036,-0.9448) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5298,-2.2436,-1.0498) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3261,-1.7233,0.4545) mvmt=(0.0246,-0.4433,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.2702,2.1445,-2.5500) mvmt=(-0.3981,-0.1965,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.6692,1.9475,-2.5700) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.169,9.552,91.450) lpos=(-8.669,1.948,-2.570) lprev=(-8.270,2.144,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1558,-2.2005,-0.9448) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1308,-2.4405,-1.0498) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3507,-2.1675,0.4545) mvmt=(0.0246,-0.4442,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6692,1.9475,-2.5500) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6692,1.9475,-3.3200) mvmt=(-0.3990,-0.1969,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.6692,1.9475,-3.3200) out=(-8.6692,1.9475,-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.169,9.552,90.700) lpos=(-8.669,1.948,-3.320) lprev=(-8.270,2.144,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.6692,1.9475,-2.5700) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.169,9.552,91.450) lpos=(-8.669,1.948,-2.570) lprev=(-8.270,2.144,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1558,-2.2005,-0.9448) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1308,-2.4405,-1.0498) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3507,-2.1675,0.4545) mvmt=(0.0246,-0.4442,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6692,1.9475,-2.5500) mvmt=(-0.3990,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.0654,1.7519,-2.5700) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.565,9.748,91.450) lpos=(-9.065,1.752,-2.570) lprev=(-8.669,1.948,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7596,-2.3961,-0.9448) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7346,-2.6361,-1.0498) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0654,1.7519,-2.5500) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0654,1.7519,-3.3200) mvmt=(-0.3963,-0.1956,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.0654,1.7519,-3.3200) out=(-9.0654,1.7519,-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.565,9.748,90.700) lpos=(-9.065,1.752,-3.320) lprev=(-8.669,1.948,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.0654,1.7519,-2.5700) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.565,9.748,91.450) lpos=(-9.065,1.752,-2.570) lprev=(-8.669,1.948,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7596,-2.3961,-0.9448) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7346,-2.6361,-1.0498) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0654,1.7519,-2.5500) mvmt=(-0.3963,-0.1956,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.4644,1.5550,-2.5700) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.964,9.945,91.450) lpos=(-9.464,1.555,-2.570) lprev=(-9.065,1.752,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3606,-2.5930,-0.9448) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3356,-2.8330,-1.0498) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4644,1.5550,-2.5500) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4644,1.5550,-3.3200) mvmt=(-0.3989,-0.1969,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.4644,1.5550,-3.3200) out=(-9.4644,1.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=(139.964,9.945,90.700) lpos=(-9.464,1.555,-3.320) lprev=(-9.065,1.752,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.4644,1.5550,-2.5700) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.964,9.945,91.450) lpos=(-9.464,1.555,-2.570) lprev=(-9.065,1.752,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3606,-2.5930,-0.9448) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3356,-2.8330,-1.0498) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4644,1.5550,-2.5500) mvmt=(-0.3989,-0.1969,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.8661,1.3632,-2.5700) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.366,10.137,91.450) lpos=(-9.866,1.363,-2.570) lprev=(-9.464,1.555,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0411,-2.7849,-0.9448) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9339,-3.0249,-1.0498) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8661,1.3632,-2.5500) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8661,1.3632,-3.3200) mvmt=(-0.4017,-0.1918,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.8661,1.3632,-3.3200) out=(-9.8661,1.3632,-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=(140.366,10.137,90.700) lpos=(-9.866,1.363,-3.320) lprev=(-9.464,1.555,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.8661,1.3632,-2.5700) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.366,10.137,91.450) lpos=(-9.866,1.363,-2.570) lprev=(-9.464,1.555,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0411,-2.7849,-0.9448) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9339,-3.0249,-1.0498) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8661,1.3632,-2.5500) mvmt=(-0.4017,-0.1918,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2846,1.2072,-2.5700) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.785,10.293,91.450) lpos=(-10.285,1.207,-2.570) lprev=(-9.866,1.363,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4596,-2.9408,-0.9448) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5154,-3.1808,-1.0498) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2846,1.2072,-2.5500) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2846,1.2072,-3.3200) mvmt=(-0.4185,-0.1560,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2846,1.2072,-3.3200) out=(-10.2846,1.2072,-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=(140.785,10.293,90.700) lpos=(-10.285,1.207,-3.320) lprev=(-9.866,1.363,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.2846,1.2072,-2.5700) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.785,10.293,91.450) lpos=(-10.285,1.207,-2.570) lprev=(-9.866,1.363,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4596,-2.9408,-0.9448) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5154,-3.1808,-1.0498) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2846,1.2072,-2.5500) mvmt=(-0.4185,-0.1560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7151,1.0890,-2.5700) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.215,10.411,91.450) lpos=(-10.715,1.089,-2.570) lprev=(-10.285,1.207,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8901,-3.0590,-0.9448) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0849,-3.2990,-1.0498) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7151,1.0890,-2.5500) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7151,1.0890,-3.3200) mvmt=(-0.4305,-0.1182,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7151,1.0890,-3.3200) out=(-10.7151,1.0890,-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.215,10.411,90.700) lpos=(-10.715,1.089,-3.320) lprev=(-10.285,1.207,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7151,1.0890,-2.5700) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.215,10.411,91.450) lpos=(-10.715,1.089,-2.570) lprev=(-10.285,1.207,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8901,-3.0590,-0.9448) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0849,-3.2990,-1.0498) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7151,1.0890,-2.5500) mvmt=(-0.4305,-0.1182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7547,1.5392,-2.5700) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.255,9.961,91.450) lpos=(-10.755,1.539,-2.570) lprev=(-10.715,1.089,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9297,-2.6088,-0.9448) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0453,-2.8488,-1.0498) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7547,1.5392,-2.5500) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7547,1.5392,-3.3200) mvmt=(-0.0396,0.4502,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7547,1.5392,-3.3200) out=(-10.7547,1.5392,-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.255,9.961,90.700) lpos=(-10.755,1.539,-3.320) lprev=(-10.715,1.089,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7547,1.5392,-2.5700) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.255,9.961,91.450) lpos=(-10.755,1.539,-2.570) lprev=(-10.715,1.089,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9297,-2.6088,-0.9448) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0453,-2.8488,-1.0498) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7547,1.5392,-2.5500) mvmt=(-0.0396,0.4502,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7935,1.9805,-2.5700) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.294,9.519,91.450) lpos=(-10.794,1.981,-2.570) lprev=(-10.755,1.539,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9685,-2.1675,-0.9448) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0065,-2.4075,-1.0498) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7935,1.9805,-2.5500) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7935,1.9805,-3.3200) mvmt=(-0.0388,0.4413,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7935,1.9805,-3.3200) out=(-10.7935,1.9805,-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.294,9.519,90.700) lpos=(-10.794,1.981,-3.320) lprev=(-10.755,1.539,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7935,1.9805,-2.5700) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.294,9.519,91.450) lpos=(-10.794,1.981,-2.570) lprev=(-10.755,1.539,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9685,-2.1675,-0.9448) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0065,-2.4075,-1.0498) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7935,1.9805,-2.5500) mvmt=(-0.0388,0.4413,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8320,2.4173,-2.5700) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.332,9.083,91.450) lpos=(-10.832,2.417,-2.570) lprev=(-10.794,1.981,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0070,-1.7308,-0.9448) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0320,-1.9708,-1.0498) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8320,2.4173,-2.5500) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8320,2.4173,-3.3200) mvmt=(-0.0385,0.4367,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8320,2.4173,-3.3200) out=(-10.8320,2.4173,-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.332,9.083,90.700) lpos=(-10.832,2.417,-3.320) lprev=(-10.794,1.981,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8320,2.4173,-2.5700) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.332,9.083,91.450) lpos=(-10.832,2.417,-2.570) lprev=(-10.794,1.981,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0070,-1.7308,-0.9448) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0320,-1.9708,-1.0498) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8320,2.4173,-2.5500) mvmt=(-0.0385,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8704,2.8537,-2.5700) mvmt=(-0.0384,0.4364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.370,8.646,91.450) lpos=(-10.870,2.854,-2.570) lprev=(-10.832,2.417,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0454,-1.2944,-0.9448) mvmt=(-0.0384,0.4364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.5344,-1.0498) mvmt=(-0.0384,0.4364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8704,2.8537,-2.5700) mvmt=(-0.0384,0.4364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.370,8.646,91.450) lpos=(-10.870,2.854,-2.570) lprev=(-10.832,2.417,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0454,-1.2944,-0.9448) mvmt=(-0.0384,0.4364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.5344,-1.0498) mvmt=(-0.0384,0.4364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0704,-1.5344,-1.0498) out=(-0.0704,-1.5344,-0.7518) delta=(0.0000,0.0000,0.2980) deltaMag=0.2980 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.5034 dpPos=0.2729 dpMove=-0.4170 iDist=0.4966 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=(-10.8704,2.8537,-2.2720) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=0 objState=0x303 winterp=0.5034 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.370,8.646,91.748) lpos=(-10.870,2.854,-2.272) lprev=(-10.832,2.417,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0454,-1.2944,-0.6468) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=0 objState=0x303 winterp=0.5034 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.5344,-0.7518) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=0 objState=0x303 winterp=0.5034 return=-1 +[push-back-disp] site=dispatch center=(-10.8704,2.8537,-2.2520) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=0 objState=0x303 winterp=0.5034 return=-1 +[push-back-disp] site=dispatch center=(-10.8704,2.8537,-2.2720) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=1 objState=0x303 winterp=0.5034 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.370,8.646,91.748) lpos=(-10.870,2.854,-2.272) lprev=(-10.832,2.417,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0454,-1.2944,-0.6468) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=1 objState=0x303 winterp=0.5034 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.5344,-0.7518) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=1 objState=0x303 winterp=0.5034 return=-1 +[push-back-disp] site=dispatch center=(-10.8704,2.8537,-2.2520) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=1 objState=0x303 winterp=0.5034 return=-1 +[push-back-disp] site=dispatch center=(-10.8704,2.8537,-2.2520) mvmt=(-0.0384,0.4364,0.2980) collide=False insertType=0 objState=0x303 winterp=0.5034 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9087,3.0638,-2.0547) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,8.436,91.965) lpos=(-10.909,3.064,-2.055) lprev=(-10.870,2.854,-2.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0837,-1.0842,-0.4295) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1087,-1.3242,-0.5345) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1087,-3.5355,-1.8845) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9087,3.0638,-2.0347) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9087,3.0638,-2.8047) mvmt=(-0.0383,0.2101,-0.5326) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9087,3.0638,-2.8047) out=(-10.9087,3.0638,-2.5700) delta=(0.0000,0.0000,0.2347) deltaMag=0.2347 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6871 dpPos=0.2453 dpMove=-0.7500 iDist=0.3129 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.409,8.436,91.215) lpos=(-10.909,3.064,-2.805) lprev=(-10.870,2.854,-2.272) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9087,3.0638,-2.5700) mvmt=(-0.0383,0.2101,-0.2980) collide=False insertType=0 objState=0x303 winterp=0.6871 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,8.436,91.450) lpos=(-10.909,3.064,-2.570) lprev=(-10.870,2.854,-2.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0837,-1.0842,-0.9448) mvmt=(-0.0383,0.2101,-0.2980) collide=False insertType=0 objState=0x303 winterp=0.6871 return=-1 +[push-back-disp] site=dispatch center=(-0.1087,-1.3242,-1.0498) mvmt=(-0.0383,0.2101,-0.2980) collide=False insertType=0 objState=0x303 winterp=0.6871 return=-1 +[push-back] site=adjust_sphere in=(-0.1087,-1.3242,-1.0498) out=(-0.1087,-1.3242,-0.5345) delta=(0.0000,0.0000,0.5153) deltaMag=0.5153 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6871->-0.0000 dpPos=0.1218 dpMove=-0.3582 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.9087,3.0638,-2.0547) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,8.436,91.965) lpos=(-10.909,3.064,-2.055) lprev=(-10.870,2.854,-2.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0837,-1.0842,-0.4295) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1087,-1.3242,-0.5345) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1087,-3.5355,-1.8845) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9087,3.0638,-2.0347) mvmt=(-0.0383,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9473,3.2754,-1.8358) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,8.225,92.184) lpos=(-10.947,3.275,-1.836) lprev=(-10.909,3.064,-2.055) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1223,-0.8727,-0.2106) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1472,-1.1127,-0.3156) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1472,-3.3239,-1.6656) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9473,3.2754,-1.8158) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9473,3.2754,-2.5858) mvmt=(-0.0386,0.2116,-0.5311) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9473,3.2754,-2.5858) out=(-10.9473,3.2754,-2.5700) delta=(0.0000,0.0000,0.0158) deltaMag=0.0158 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9789 dpPos=0.4642 dpMove=-0.7500 iDist=0.0211 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.447,8.225,91.434) lpos=(-10.947,3.275,-2.586) lprev=(-10.909,3.064,-2.055) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9473,3.2754,-2.5700) mvmt=(-0.0386,0.2116,-0.5153) collide=False insertType=0 objState=0x303 winterp=0.9789 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,8.225,91.450) lpos=(-10.947,3.275,-2.570) lprev=(-10.909,3.064,-2.055) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1223,-0.8727,-0.9448) mvmt=(-0.0386,0.2116,-0.5153) collide=False insertType=0 objState=0x303 winterp=0.9789 return=-1 +[push-back-disp] site=dispatch center=(-0.1472,-1.1127,-1.0498) mvmt=(-0.0386,0.2116,-0.5153) collide=False insertType=0 objState=0x303 winterp=0.9789 return=-1 +[push-back] site=adjust_sphere in=(-0.1472,-1.1127,-1.0498) out=(-0.1472,-1.1127,-0.3156) delta=(0.0000,0.0000,0.7342) deltaMag=0.7342 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9789->-0.0000 dpPos=-0.0303 dpMove=-0.5103 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.9473,3.2754,-1.8358) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,8.225,92.184) lpos=(-10.947,3.275,-1.836) lprev=(-10.909,3.064,-2.055) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1223,-0.8727,-0.2106) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1472,-1.1127,-0.3156) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1472,-3.3239,-1.6656) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9473,3.2754,-1.8158) mvmt=(-0.0386,0.2116,0.2189) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9855,3.4856,-1.6184) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.486,8.014,92.402) lpos=(-10.986,3.486,-1.618) lprev=(-10.947,3.275,-1.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1606,-0.6625,0.0068) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1855,-0.9025,-0.0982) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1855,-3.1138,-1.4482) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9855,3.4856,-1.5984) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9855,3.4856,-2.3684) mvmt=(-0.0383,0.2102,-0.5326) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.486,8.014,91.652) lpos=(-10.986,3.486,-2.368) lprev=(-10.947,3.275,-1.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1606,-0.6625,-0.7432) mvmt=(-0.0383,0.2102,-0.5326) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1855,-0.9025,-0.8482) mvmt=(-0.0383,0.2102,-0.5326) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1855,-0.9025,-0.8482) out=(-0.1855,-0.9025,-0.0982) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9855,3.4856,-1.6184) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.486,8.014,92.402) lpos=(-10.986,3.486,-1.618) lprev=(-10.947,3.275,-1.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1606,-0.6625,0.0068) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1855,-0.9025,-0.0982) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1855,-3.1138,-1.4482) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9855,3.4856,-1.5984) mvmt=(-0.0383,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9230,3.6875,-1.4094) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.423,7.812,92.611) lpos=(-10.923,3.688,-1.409) lprev=(-10.986,3.486,-1.618) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0980,-0.4605,0.2158) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1230,-0.7005,0.1108) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1230,-2.9118,-1.2392) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9230,3.6875,-1.3894) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9230,3.6875,-2.1594) mvmt=(0.0625,0.2020,-0.5411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.423,7.812,91.861) lpos=(-10.923,3.688,-2.159) lprev=(-10.986,3.486,-1.618) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0980,-0.4605,-0.5342) mvmt=(0.0625,0.2020,-0.5411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1230,-0.7005,-0.6392) mvmt=(0.0625,0.2020,-0.5411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1230,-0.7005,-0.6392) out=(-0.1230,-0.7005,0.1108) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9230,3.6875,-1.4094) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.423,7.812,92.611) lpos=(-10.923,3.688,-1.409) lprev=(-10.986,3.486,-1.618) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0980,-0.4605,0.2158) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1230,-0.7005,0.1108) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1230,-2.9118,-1.2392) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9230,3.6875,-1.3894) mvmt=(0.0625,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8572,3.9001,-1.1895) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.357,7.600,92.830) lpos=(-10.857,3.900,-1.190) lprev=(-10.923,3.688,-1.409) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0322,-0.2480,0.4357) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0572,-0.4880,0.3307) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0572,-2.6992,-1.0193) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8572,3.9001,-1.1695) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8572,3.9001,-1.9395) mvmt=(0.0658,0.2126,-0.5301) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.357,7.600,92.080) lpos=(-10.857,3.900,-1.940) lprev=(-10.923,3.688,-1.409) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0322,-0.2480,-0.3143) mvmt=(0.0658,0.2126,-0.5301) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0572,-0.4880,-0.4193) mvmt=(0.0658,0.2126,-0.5301) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0572,-0.4880,-0.4193) out=(-0.0572,-0.4880,0.3307) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8572,3.9001,-1.1895) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.357,7.600,92.830) lpos=(-10.857,3.900,-1.190) lprev=(-10.923,3.688,-1.409) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0322,-0.2480,0.4357) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0572,-0.4880,0.3307) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0572,-2.6992,-1.0193) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8572,3.9001,-1.1695) mvmt=(0.0658,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8166,4.1089,-0.9735) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,7.391,93.047) lpos=(-10.817,4.109,-0.973) lprev=(-10.857,3.900,-1.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9916,-0.0391,0.6517) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0166,-0.2791,0.5467) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0166,-2.4904,-0.8033) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8166,4.1089,-0.9535) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8166,4.1089,-1.7235) mvmt=(0.0406,0.2088,-0.5340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,7.391,92.297) lpos=(-10.817,4.109,-1.723) lprev=(-10.857,3.900,-1.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9916,-0.0391,-0.0983) mvmt=(0.0406,0.2088,-0.5340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0166,-0.2791,-0.2033) mvmt=(0.0406,0.2088,-0.5340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0166,-0.2791,-0.2033) out=(-0.0166,-0.2791,0.5467) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8166,4.1089,-0.9735) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,7.391,93.047) lpos=(-10.817,4.109,-0.973) lprev=(-10.857,3.900,-1.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9916,-0.0391,0.6517) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0166,-0.2791,0.5467) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0166,-2.4904,-0.8033) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8166,4.1089,-0.9535) mvmt=(0.0406,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8122,4.3114,-0.7641) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.312,7.189,93.256) lpos=(-10.812,4.311,-0.764) lprev=(-10.817,4.109,-0.973) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9872,0.1633,0.8611) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0122,-0.0767,0.7561) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0122,-2.2879,-0.5939) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8122,4.3114,-0.7441) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8122,4.3114,-1.5141) mvmt=(0.0043,0.2024,-0.5406) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.312,7.189,92.506) lpos=(-10.812,4.311,-1.514) lprev=(-10.817,4.109,-0.973) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9872,0.1633,0.1111) mvmt=(0.0043,0.2024,-0.5406) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0122,-0.0767,0.0061) mvmt=(0.0043,0.2024,-0.5406) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0122,-0.0767,0.0061) out=(-0.0122,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8122,4.3114,-0.7641) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.312,7.189,93.256) lpos=(-10.812,4.311,-0.764) lprev=(-10.817,4.109,-0.973) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9872,0.1633,0.8611) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0122,-0.0767,0.7561) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0122,-2.2879,-0.5939) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8122,4.3114,-0.7441) mvmt=(0.0043,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8257,4.5176,-0.5507) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.326,6.982,93.469) lpos=(-10.826,4.518,-0.551) lprev=(-10.812,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8257,4.5176,-0.5507) mvmt=(-0.0135,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.0007,0.3696,1.0745) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,0.1296,0.9695) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,-2.0817,-0.3805) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8257,4.5176,-0.5307) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8257,4.5176,-0.5507) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.326,6.982,93.469) lpos=(-10.826,4.518,-0.551) lprev=(-10.812,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8257,4.5176,-0.5507) mvmt=(-0.0135,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.0007,0.3696,1.0745) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,0.1296,0.9695) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,-2.0817,-0.3805) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8257,4.5176,-0.5307) mvmt=(-0.0135,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8257,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.326,7.189,93.256) lpos=(-10.826,4.311,-0.764) lprev=(-10.812,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0007,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8257,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8257,4.3114,-1.5141) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.326,7.189,92.506) lpos=(-10.826,4.311,-1.514) lprev=(-10.812,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0007,0.1633,0.1111) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,-0.0767,0.0061) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0257,-0.0767,0.0061) out=(-0.0257,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8257,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.326,7.189,93.256) lpos=(-10.826,4.311,-0.764) lprev=(-10.812,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0007,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0257,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8257,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8391,4.5160,-0.5524) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.339,6.984,93.468) lpos=(-10.839,4.516,-0.552) lprev=(-10.826,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8391,4.5160,-0.5524) mvmt=(-0.0134,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=(-1.0141,0.3680,1.0728) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,0.1280,0.9678) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,-2.0833,-0.3822) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8391,4.5160,-0.5324) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8391,4.5160,-0.5524) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.339,6.984,93.468) lpos=(-10.839,4.516,-0.552) lprev=(-10.826,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8391,4.5160,-0.5524) mvmt=(-0.0134,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=(-1.0141,0.3680,1.0728) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,0.1280,0.9678) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,-2.0833,-0.3822) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8391,4.5160,-0.5324) mvmt=(-0.0134,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8391,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.339,7.189,93.256) lpos=(-10.839,4.311,-0.764) lprev=(-10.826,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0141,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,-0.0767,0.7561) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8391,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8391,4.3114,-1.5141) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.339,7.189,92.506) lpos=(-10.839,4.311,-1.514) lprev=(-10.826,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0141,0.1633,0.1111) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,-0.0767,0.0061) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0391,-0.0767,0.0061) out=(-0.0391,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8391,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.339,7.189,93.256) lpos=(-10.839,4.311,-0.764) lprev=(-10.826,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0141,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,-0.0767,0.7561) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0391,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8391,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8526,4.5173,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,6.983,93.469) lpos=(-10.853,4.517,-0.551) lprev=(-10.839,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8526,4.5173,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0276,0.3692,1.0741) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,0.1292,0.9691) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,-2.0820,-0.3809) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8526,4.5173,-0.5311) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8526,4.5173,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,6.983,93.469) lpos=(-10.853,4.517,-0.551) lprev=(-10.839,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8526,4.5173,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0276,0.3692,1.0741) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,0.1292,0.9691) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,-2.0820,-0.3809) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8526,4.5173,-0.5311) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8526,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,7.189,93.256) lpos=(-10.853,4.311,-0.764) lprev=(-10.839,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0276,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8526,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8526,4.3114,-1.5141) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,7.189,92.506) lpos=(-10.853,4.311,-1.514) lprev=(-10.839,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0276,0.1633,0.1111) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,-0.0767,0.0061) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0526,-0.0767,0.0061) out=(-0.0526,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8526,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,7.189,93.256) lpos=(-10.853,4.311,-0.764) lprev=(-10.839,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0276,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0526,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8526,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8660,4.5172,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,6.983,93.469) lpos=(-10.866,4.517,-0.551) lprev=(-10.853,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8660,4.5172,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0410,0.3692,1.0741) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,0.1292,0.9691) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,-2.0821,-0.3809) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8660,4.5172,-0.5311) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8660,4.5172,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,6.983,93.469) lpos=(-10.866,4.517,-0.551) lprev=(-10.853,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8660,4.5172,-0.5511) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0410,0.3692,1.0741) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,0.1292,0.9691) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,-2.0821,-0.3809) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8660,4.5172,-0.5311) mvmt=(-0.0135,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8660,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.189,93.256) lpos=(-10.866,4.311,-0.764) lprev=(-10.853,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0410,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8660,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8660,4.3114,-1.5141) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.189,92.506) lpos=(-10.866,4.311,-1.514) lprev=(-10.853,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0410,0.1633,0.1111) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,-0.0767,0.0061) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0660,-0.0767,0.0061) out=(-0.0660,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8660,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.189,93.256) lpos=(-10.866,4.311,-0.764) lprev=(-10.853,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0410,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0660,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8660,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8795,4.5169,-0.5515) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.379,6.983,93.469) lpos=(-10.879,4.517,-0.551) lprev=(-10.866,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8795,4.5169,-0.5515) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0545,0.3688,1.0737) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,0.1288,0.9687) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,-2.0824,-0.3813) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8795,4.5169,-0.5315) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8795,4.5169,-0.5515) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.379,6.983,93.469) lpos=(-10.879,4.517,-0.551) lprev=(-10.866,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8795,4.5169,-0.5515) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0545,0.3688,1.0737) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,0.1288,0.9687) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,-2.0824,-0.3813) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8795,4.5169,-0.5315) mvmt=(-0.0134,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8795,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.379,7.189,93.256) lpos=(-10.879,4.311,-0.764) lprev=(-10.866,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0545,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,-0.0767,0.7561) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8795,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8795,4.3114,-1.5141) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.379,7.189,92.506) lpos=(-10.879,4.311,-1.514) lprev=(-10.866,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0545,0.1633,0.1111) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,-0.0767,0.0061) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0795,-0.0767,0.0061) out=(-0.0795,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8795,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.379,7.189,93.256) lpos=(-10.879,4.311,-0.764) lprev=(-10.866,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0545,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,-0.0767,0.7561) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0795,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8795,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8930,4.5183,-0.5500) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.393,6.982,93.470) lpos=(-10.893,4.518,-0.550) lprev=(-10.879,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8930,4.5183,-0.5500) mvmt=(-0.0135,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.0680,0.3703,1.0752) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,0.1303,0.9702) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,-2.0810,-0.3798) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8930,4.5183,-0.5300) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8930,4.5183,-0.5500) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.393,6.982,93.470) lpos=(-10.893,4.518,-0.550) lprev=(-10.879,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8930,4.5183,-0.5500) mvmt=(-0.0135,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.0680,0.3703,1.0752) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,0.1303,0.9702) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,-2.0810,-0.3798) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8930,4.5183,-0.5300) mvmt=(-0.0135,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8930,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.393,7.189,93.256) lpos=(-10.893,4.311,-0.764) lprev=(-10.879,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0680,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,-0.0767,0.7561) mvmt=(-0.0135,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8930,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8930,4.3114,-1.5141) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.393,7.189,92.506) lpos=(-10.893,4.311,-1.514) lprev=(-10.879,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0680,0.1633,0.1111) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,-0.0767,0.0061) mvmt=(-0.0135,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0930,-0.0767,0.0061) out=(-0.0930,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8930,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.393,7.189,93.256) lpos=(-10.893,4.311,-0.764) lprev=(-10.879,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0680,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,-0.0767,0.7561) mvmt=(-0.0135,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0930,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8930,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9066,4.5191,-0.5492) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,6.981,93.471) lpos=(-10.907,4.519,-0.549) lprev=(-10.893,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9066,4.5191,-0.5492) mvmt=(-0.0136,0.2077,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.0816,0.3710,1.0760) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,0.1310,0.9710) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,-2.0803,-0.3790) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9066,4.5191,-0.5292) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9066,4.5191,-0.5492) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,6.981,93.471) lpos=(-10.907,4.519,-0.549) lprev=(-10.893,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9066,4.5191,-0.5492) mvmt=(-0.0136,0.2077,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.0816,0.3710,1.0760) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,0.1310,0.9710) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,-2.0803,-0.3790) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9066,4.5191,-0.5292) mvmt=(-0.0136,0.2077,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9066,4.3114,-0.7641) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.189,93.256) lpos=(-10.907,4.311,-0.764) lprev=(-10.893,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0816,0.1633,0.8611) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,-0.0767,0.7561) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,-2.2879,-0.5939) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9066,4.3114,-0.7441) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9066,4.3114,-1.5141) mvmt=(-0.0136,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.189,92.506) lpos=(-10.907,4.311,-1.514) lprev=(-10.893,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0816,0.1633,0.1111) mvmt=(-0.0136,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,-0.0767,0.0061) mvmt=(-0.0136,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1066,-0.0767,0.0061) out=(-0.1066,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9066,4.3114,-0.7641) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.189,93.256) lpos=(-10.907,4.311,-0.764) lprev=(-10.893,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0816,0.1633,0.8611) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,-0.0767,0.7561) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1066,-2.2879,-0.5939) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9066,4.3114,-0.7441) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9201,4.5175,-0.5508) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,6.983,93.469) lpos=(-10.920,4.517,-0.551) lprev=(-10.907,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9201,4.5175,-0.5508) mvmt=(-0.0135,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.0951,0.3694,1.0744) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,0.1294,0.9694) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,-2.0818,-0.3806) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9201,4.5175,-0.5308) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9201,4.5175,-0.5508) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,6.983,93.469) lpos=(-10.920,4.517,-0.551) lprev=(-10.907,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9201,4.5175,-0.5508) mvmt=(-0.0135,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.0951,0.3694,1.0744) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,0.1294,0.9694) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,-2.0818,-0.3806) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9201,4.5175,-0.5308) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9201,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.189,93.256) lpos=(-10.920,4.311,-0.764) lprev=(-10.907,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0951,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9201,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9201,4.3114,-1.5141) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.189,92.506) lpos=(-10.920,4.311,-1.514) lprev=(-10.907,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0951,0.1633,0.1111) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,-0.0767,0.0061) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1201,-0.0767,0.0061) out=(-0.1201,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9201,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.189,93.256) lpos=(-10.920,4.311,-0.764) lprev=(-10.907,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0951,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1201,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9201,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9337,4.5196,-0.5486) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,6.980,93.471) lpos=(-10.934,4.520,-0.549) lprev=(-10.920,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9337,4.5196,-0.5486) mvmt=(-0.0136,0.2083,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.1087,0.3716,1.0766) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,0.1316,0.9716) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-2.0797,-0.3784) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.5196,-0.5286) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.5196,-0.5486) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,6.980,93.471) lpos=(-10.934,4.520,-0.549) lprev=(-10.920,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9337,4.5196,-0.5486) mvmt=(-0.0136,0.2083,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.1087,0.3716,1.0766) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,0.1316,0.9716) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-2.0797,-0.3784) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.5196,-0.5286) mvmt=(-0.0136,0.2083,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.3114,-0.7641) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,7.189,93.256) lpos=(-10.934,4.311,-0.764) lprev=(-10.920,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1087,0.1633,0.8611) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-0.0767,0.7561) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-2.2879,-0.5939) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.3114,-0.7441) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.3114,-1.5141) mvmt=(-0.0136,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,7.189,92.506) lpos=(-10.934,4.311,-1.514) lprev=(-10.920,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1087,0.1633,0.1111) mvmt=(-0.0136,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-0.0767,0.0061) mvmt=(-0.0136,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1337,-0.0767,0.0061) out=(-0.1337,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9337,4.3114,-0.7641) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,7.189,93.256) lpos=(-10.934,4.311,-0.764) lprev=(-10.920,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1087,0.1633,0.8611) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-0.0767,0.7561) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-2.2879,-0.5939) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.3114,-0.7441) mvmt=(-0.0136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9477,4.5262,-0.5418) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.448,6.974,93.478) lpos=(-10.948,4.526,-0.542) lprev=(-10.934,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9477,4.5262,-0.5418) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1227,0.3782,1.0834) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,0.1382,0.9784) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,-2.0731,-0.3716) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9477,4.5262,-0.5218) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9477,4.5262,-0.5418) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.448,6.974,93.478) lpos=(-10.948,4.526,-0.542) lprev=(-10.934,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9477,4.5262,-0.5418) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1227,0.3782,1.0834) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,0.1382,0.9784) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,-2.0731,-0.3716) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9477,4.5262,-0.5218) mvmt=(-0.0141,0.2148,0.2223) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9477,4.3114,-0.7641) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.448,7.189,93.256) lpos=(-10.948,4.311,-0.764) lprev=(-10.934,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1227,0.1633,0.8611) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,-0.0767,0.7561) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,-2.2879,-0.5939) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9477,4.3114,-0.7441) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9477,4.3114,-1.5141) mvmt=(-0.0141,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.448,7.189,92.506) lpos=(-10.948,4.311,-1.514) lprev=(-10.934,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1227,0.1633,0.1111) mvmt=(-0.0141,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,-0.0767,0.0061) mvmt=(-0.0141,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1477,-0.0767,0.0061) out=(-0.1477,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9477,4.3114,-0.7641) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.448,7.189,93.256) lpos=(-10.948,4.311,-0.764) lprev=(-10.934,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1227,0.1633,0.8611) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,-0.0767,0.7561) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1477,-2.2879,-0.5939) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9477,4.3114,-0.7441) mvmt=(-0.0141,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9608,4.5120,-0.5565) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,6.988,93.463) lpos=(-10.961,4.512,-0.557) lprev=(-10.948,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9608,4.5120,-0.5565) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1358,0.3639,1.0687) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,0.1239,0.9637) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,-2.0873,-0.3863) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9608,4.5120,-0.5365) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9608,4.5120,-0.5565) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,6.988,93.463) lpos=(-10.961,4.512,-0.557) lprev=(-10.948,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9608,4.5120,-0.5565) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1358,0.3639,1.0687) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,0.1239,0.9637) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,-2.0873,-0.3863) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9608,4.5120,-0.5365) mvmt=(-0.0131,0.2006,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9608,4.3114,-0.7641) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.189,93.256) lpos=(-10.961,4.311,-0.764) lprev=(-10.948,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1358,0.1633,0.8611) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,-0.0767,0.7561) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,-2.2879,-0.5939) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9608,4.3114,-0.7441) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9608,4.3114,-1.5141) mvmt=(-0.0131,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.189,92.506) lpos=(-10.961,4.311,-1.514) lprev=(-10.948,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1358,0.1633,0.1111) mvmt=(-0.0131,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,-0.0767,0.0061) mvmt=(-0.0131,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1608,-0.0767,0.0061) out=(-0.1608,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9608,4.3114,-0.7641) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.189,93.256) lpos=(-10.961,4.311,-0.764) lprev=(-10.948,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1358,0.1633,0.8611) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,-0.0767,0.7561) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1608,-2.2879,-0.5939) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9608,4.3114,-0.7441) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9743,4.5169,-0.5514) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.474,6.983,93.469) lpos=(-10.974,4.517,-0.551) lprev=(-10.961,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9743,4.5169,-0.5514) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1493,0.3689,1.0738) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,0.1289,0.9688) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,-2.0824,-0.3812) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9743,4.5169,-0.5314) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9743,4.5169,-0.5514) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.474,6.983,93.469) lpos=(-10.974,4.517,-0.551) lprev=(-10.961,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9743,4.5169,-0.5514) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1493,0.3689,1.0738) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,0.1289,0.9688) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,-2.0824,-0.3812) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9743,4.5169,-0.5314) mvmt=(-0.0134,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9743,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.474,7.189,93.256) lpos=(-10.974,4.311,-0.764) lprev=(-10.961,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1493,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,-0.0767,0.7561) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9743,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9743,4.3114,-1.5141) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.474,7.189,92.506) lpos=(-10.974,4.311,-1.514) lprev=(-10.961,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1493,0.1633,0.1111) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,-0.0767,0.0061) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1743,-0.0767,0.0061) out=(-0.1743,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9743,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.474,7.189,93.256) lpos=(-10.974,4.311,-0.764) lprev=(-10.961,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1493,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,-0.0767,0.7561) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1743,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9743,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9878,4.5180,-0.5503) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.488,6.982,93.470) lpos=(-10.988,4.518,-0.550) lprev=(-10.974,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9878,4.5180,-0.5503) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1628,0.3700,1.0749) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,0.1300,0.9699) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,-2.0813,-0.3801) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9878,4.5180,-0.5303) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9878,4.5180,-0.5503) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.488,6.982,93.470) lpos=(-10.988,4.518,-0.550) lprev=(-10.974,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9878,4.5180,-0.5503) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1628,0.3700,1.0749) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,0.1300,0.9699) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,-2.0813,-0.3801) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9878,4.5180,-0.5303) mvmt=(-0.0135,0.2067,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9878,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.488,7.189,93.256) lpos=(-10.988,4.311,-0.764) lprev=(-10.974,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1628,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9878,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9878,4.3114,-1.5141) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.488,7.189,92.506) lpos=(-10.988,4.311,-1.514) lprev=(-10.974,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1628,0.1633,0.1111) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,-0.0767,0.0061) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1878,-0.0767,0.0061) out=(-0.1878,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9878,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.488,7.189,93.256) lpos=(-10.988,4.311,-0.764) lprev=(-10.974,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1628,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1878,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9878,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0017,4.5242,-0.5439) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,6.976,93.476) lpos=(-11.002,4.524,-0.544) lprev=(-10.988,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.5242,-0.5439) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.3762,1.0813) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.1362,0.9763) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.0751,-0.3737) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.5242,-0.5239) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.5242,-0.5439) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,6.976,93.476) lpos=(-11.002,4.524,-0.544) lprev=(-10.988,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.5242,-0.5439) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.3762,1.0813) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.1362,0.9763) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.0751,-0.3737) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.5242,-0.5239) mvmt=(-0.0139,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.3114,-0.7641) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.189,93.256) lpos=(-11.002,4.311,-0.764) lprev=(-10.988,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1767,0.1633,0.8611) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-0.0767,0.7561) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.2879,-0.5939) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.3114,-0.7441) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.3114,-1.5141) mvmt=(-0.0139,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.189,92.506) lpos=(-11.002,4.311,-1.514) lprev=(-10.988,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1767,0.1633,0.1111) mvmt=(-0.0139,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-0.0767,0.0061) mvmt=(-0.0139,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2017,-0.0767,0.0061) out=(-0.2017,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0017,4.3114,-0.7641) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.189,93.256) lpos=(-11.002,4.311,-0.764) lprev=(-10.988,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1767,0.1633,0.8611) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-0.0767,0.7561) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.2879,-0.5939) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.3114,-0.7441) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0156,4.5235,-0.5446) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,6.977,93.475) lpos=(-11.016,4.523,-0.545) lprev=(-11.002,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0156,4.5235,-0.5446) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1906,0.3754,1.0806) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,0.1354,0.9756) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-2.0758,-0.3744) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0156,4.5235,-0.5246) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0156,4.5235,-0.5446) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,6.977,93.475) lpos=(-11.016,4.523,-0.545) lprev=(-11.002,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0156,4.5235,-0.5446) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1906,0.3754,1.0806) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,0.1354,0.9756) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-2.0758,-0.3744) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0156,4.5235,-0.5246) mvmt=(-0.0139,0.2121,0.2194) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0156,4.3114,-0.7641) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.189,93.256) lpos=(-11.016,4.311,-0.764) lprev=(-11.002,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1906,0.1633,0.8611) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-0.0767,0.7561) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-2.2879,-0.5939) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0156,4.3114,-0.7441) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0156,4.3114,-1.5141) mvmt=(-0.0139,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.189,92.506) lpos=(-11.016,4.311,-1.514) lprev=(-11.002,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1906,0.1633,0.1111) mvmt=(-0.0139,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-0.0767,0.0061) mvmt=(-0.0139,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2156,-0.0767,0.0061) out=(-0.2156,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0156,4.3114,-0.7641) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.189,93.256) lpos=(-11.016,4.311,-0.764) lprev=(-11.002,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1906,0.1633,0.8611) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-0.0767,0.7561) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-2.2879,-0.5939) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0156,4.3114,-0.7441) mvmt=(-0.0139,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0288,4.5135,-0.5550) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,6.986,93.465) lpos=(-11.029,4.514,-0.555) lprev=(-11.016,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0288,4.5135,-0.5550) mvmt=(-0.0132,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.2038,0.3655,1.0702) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,0.1255,0.9652) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.0858,-0.3848) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.5135,-0.5350) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.5135,-0.5550) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,6.986,93.465) lpos=(-11.029,4.514,-0.555) lprev=(-11.016,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0288,4.5135,-0.5550) mvmt=(-0.0132,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.2038,0.3655,1.0702) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,0.1255,0.9652) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.0858,-0.3848) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.5135,-0.5350) mvmt=(-0.0132,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.3114,-0.7641) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.189,93.256) lpos=(-11.029,4.311,-0.764) lprev=(-11.016,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2038,0.1633,0.8611) mvmt=(-0.0132,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-0.0767,0.7561) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.2879,-0.5939) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.3114,-0.7441) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.3114,-1.5141) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.189,92.506) lpos=(-11.029,4.311,-1.514) lprev=(-11.016,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2038,0.1633,0.1111) mvmt=(-0.0132,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-0.0767,0.0061) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2288,-0.0767,0.0061) out=(-0.2288,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0288,4.3114,-0.7641) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.189,93.256) lpos=(-11.029,4.311,-0.764) lprev=(-11.016,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2038,0.1633,0.8611) mvmt=(-0.0132,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-0.0767,0.7561) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.2879,-0.5939) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.3114,-0.7441) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0420,4.5130,-0.5555) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,6.987,93.465) lpos=(-11.042,4.513,-0.555) lprev=(-11.029,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0420,4.5130,-0.5555) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2170,0.3650,1.0697) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,0.1250,0.9647) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,-2.0863,-0.3853) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0420,4.5130,-0.5355) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0420,4.5130,-0.5555) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,6.987,93.465) lpos=(-11.042,4.513,-0.555) lprev=(-11.029,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0420,4.5130,-0.5555) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2170,0.3650,1.0697) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,0.1250,0.9647) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,-2.0863,-0.3853) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0420,4.5130,-0.5355) mvmt=(-0.0132,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0420,4.3114,-0.7641) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.189,93.256) lpos=(-11.042,4.311,-0.764) lprev=(-11.029,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2170,0.1633,0.8611) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,-0.0767,0.7561) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,-2.2879,-0.5939) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0420,4.3114,-0.7441) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0420,4.3114,-1.5141) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.189,92.506) lpos=(-11.042,4.311,-1.514) lprev=(-11.029,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2170,0.1633,0.1111) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,-0.0767,0.0061) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2420,-0.0767,0.0061) out=(-0.2420,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0420,4.3114,-0.7641) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.189,93.256) lpos=(-11.042,4.311,-0.764) lprev=(-11.029,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2170,0.1633,0.8611) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,-0.0767,0.7561) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2420,-2.2879,-0.5939) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0420,4.3114,-0.7441) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0555,4.5175,-0.5508) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,6.983,93.469) lpos=(-11.055,4.517,-0.551) lprev=(-11.042,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0555,4.5175,-0.5508) mvmt=(-0.0135,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.2305,0.3694,1.0743) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,0.1294,0.9694) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,-2.0818,-0.3807) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0555,4.5175,-0.5309) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0555,4.5175,-0.5508) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,6.983,93.469) lpos=(-11.055,4.517,-0.551) lprev=(-11.042,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0555,4.5175,-0.5508) mvmt=(-0.0135,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.2305,0.3694,1.0743) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,0.1294,0.9694) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,-2.0818,-0.3807) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0555,4.5175,-0.5309) mvmt=(-0.0135,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0555,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.189,93.256) lpos=(-11.055,4.311,-0.764) lprev=(-11.042,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2305,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0555,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0555,4.3114,-1.5141) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.189,92.506) lpos=(-11.055,4.311,-1.514) lprev=(-11.042,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2305,0.1633,0.1111) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,-0.0767,0.0061) mvmt=(-0.0135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2555,-0.0767,0.0061) out=(-0.2555,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0555,4.3114,-0.7641) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.189,93.256) lpos=(-11.055,4.311,-0.764) lprev=(-11.042,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2305,0.1633,0.8611) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,-0.0767,0.7561) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2555,-2.2879,-0.5939) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0555,4.3114,-0.7441) mvmt=(-0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0689,4.5166,-0.5517) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.569,6.983,93.468) lpos=(-11.069,4.517,-0.552) lprev=(-11.055,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0689,4.5166,-0.5517) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2439,0.3686,1.0735) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,0.1286,0.9685) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,-2.0827,-0.3815) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0689,4.5166,-0.5317) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0689,4.5166,-0.5517) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.569,6.983,93.468) lpos=(-11.069,4.517,-0.552) lprev=(-11.055,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0689,4.5166,-0.5517) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2439,0.3686,1.0735) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,0.1286,0.9685) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,-2.0827,-0.3815) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0689,4.5166,-0.5317) mvmt=(-0.0134,0.2053,0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0689,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.569,7.189,93.256) lpos=(-11.069,4.311,-0.764) lprev=(-11.055,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2439,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,-0.0767,0.7561) mvmt=(-0.0134,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0689,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0689,4.3114,-1.5141) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.569,7.189,92.506) lpos=(-11.069,4.311,-1.514) lprev=(-11.055,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2439,0.1633,0.1111) mvmt=(-0.0134,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,-0.0767,0.0061) mvmt=(-0.0134,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2689,-0.0767,0.0061) out=(-0.2689,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0689,4.3114,-0.7641) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.569,7.189,93.256) lpos=(-11.069,4.311,-0.764) lprev=(-11.055,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2439,0.1633,0.8611) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,-0.0767,0.7561) mvmt=(-0.0134,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2689,-2.2879,-0.5939) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0689,4.3114,-0.7441) mvmt=(-0.0134,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0821,4.5132,-0.5552) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,6.987,93.465) lpos=(-11.082,4.513,-0.555) lprev=(-11.069,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0821,4.5132,-0.5552) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2571,0.3652,1.0700) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,0.1252,0.9650) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,-2.0861,-0.3850) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0821,4.5132,-0.5352) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0821,4.5132,-0.5552) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,6.987,93.465) lpos=(-11.082,4.513,-0.555) lprev=(-11.069,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0821,4.5132,-0.5552) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2571,0.3652,1.0700) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,0.1252,0.9650) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,-2.0861,-0.3850) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0821,4.5132,-0.5352) mvmt=(-0.0132,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0821,4.3114,-0.7641) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,7.189,93.256) lpos=(-11.082,4.311,-0.764) lprev=(-11.069,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2571,0.1633,0.8611) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,-0.0767,0.7561) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,-2.2879,-0.5939) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0821,4.3114,-0.7441) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0821,4.3114,-1.5141) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,7.189,92.506) lpos=(-11.082,4.311,-1.514) lprev=(-11.069,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2571,0.1633,0.1111) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,-0.0767,0.0061) mvmt=(-0.0132,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2821,-0.0767,0.0061) out=(-0.2821,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0821,4.3114,-0.7641) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,7.189,93.256) lpos=(-11.082,4.311,-0.764) lprev=(-11.069,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2571,0.1633,0.8611) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,-0.0767,0.7561) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,-2.2879,-0.5939) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0821,4.3114,-0.7441) mvmt=(-0.0132,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0952,4.5117,-0.5569) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,6.988,93.463) lpos=(-11.095,4.512,-0.557) lprev=(-11.082,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0952,4.5117,-0.5569) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2702,0.3636,1.0683) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,0.1236,0.9633) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,-2.0877,-0.3867) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0952,4.5117,-0.5369) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0952,4.5117,-0.5569) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,6.988,93.463) lpos=(-11.095,4.512,-0.557) lprev=(-11.082,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0952,4.5117,-0.5569) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2702,0.3636,1.0683) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,0.1236,0.9633) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,-2.0877,-0.3867) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0952,4.5117,-0.5369) mvmt=(-0.0131,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0952,4.3114,-0.7641) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,7.189,93.256) lpos=(-11.095,4.311,-0.764) lprev=(-11.082,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2702,0.1633,0.8611) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,-0.0767,0.7561) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,-2.2879,-0.5939) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0952,4.3114,-0.7441) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0952,4.3114,-1.5141) mvmt=(-0.0131,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,7.189,92.506) lpos=(-11.095,4.311,-1.514) lprev=(-11.082,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2702,0.1633,0.1111) mvmt=(-0.0131,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,-0.0767,0.0061) mvmt=(-0.0131,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2952,-0.0767,0.0061) out=(-0.2952,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0952,4.3114,-0.7641) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,7.189,93.256) lpos=(-11.095,4.311,-0.764) lprev=(-11.082,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2702,0.1633,0.8611) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,-0.0767,0.7561) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2952,-2.2879,-0.5939) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0952,4.3114,-0.7441) mvmt=(-0.0131,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1080,4.5079,-0.5607) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,6.992,93.459) lpos=(-11.108,4.508,-0.561) lprev=(-11.095,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1080,4.5079,-0.5607) mvmt=(-0.0128,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.2830,0.3599,1.0645) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,0.1199,0.9595) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,-2.0914,-0.3905) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1080,4.5079,-0.5407) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1080,4.5079,-0.5607) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,6.992,93.459) lpos=(-11.108,4.508,-0.561) lprev=(-11.095,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1080,4.5079,-0.5607) mvmt=(-0.0128,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.2830,0.3599,1.0645) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,0.1199,0.9595) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,-2.0914,-0.3905) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1080,4.5079,-0.5407) mvmt=(-0.0128,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1080,4.3114,-0.7641) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.189,93.256) lpos=(-11.108,4.311,-0.764) lprev=(-11.095,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2830,0.1633,0.8611) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,-0.0767,0.7561) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,-2.2879,-0.5939) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1080,4.3114,-0.7441) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1080,4.3114,-1.5141) mvmt=(-0.0128,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.189,92.506) lpos=(-11.108,4.311,-1.514) lprev=(-11.095,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2830,0.1633,0.1111) mvmt=(-0.0128,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,-0.0767,0.0061) mvmt=(-0.0128,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3080,-0.0767,0.0061) out=(-0.3080,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.1080,4.3114,-0.7641) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.189,93.256) lpos=(-11.108,4.311,-0.764) lprev=(-11.095,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2830,0.1633,0.8611) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,-0.0767,0.7561) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3080,-2.2879,-0.5939) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1080,4.3114,-0.7441) mvmt=(-0.0128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0899,4.5168,-0.5516) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,6.983,93.468) lpos=(-11.090,4.517,-0.552) lprev=(-11.108,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0899,4.5168,-0.5516) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2649,0.3687,1.0736) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2899,0.1287,0.9686) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2899,-2.0826,-0.3814) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0899,4.5168,-0.5316) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0899,4.5168,-0.5516) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,6.983,93.468) lpos=(-11.090,4.517,-0.552) lprev=(-11.108,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0899,4.5168,-0.5516) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2649,0.3687,1.0736) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2899,0.1287,0.9686) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2899,-2.0826,-0.3814) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0899,4.5168,-0.5316) mvmt=(0.0182,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0899,4.3114,-0.7641) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.189,93.256) lpos=(-11.090,4.311,-0.764) lprev=(-11.108,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2649,0.1633,0.8611) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2899,-0.0767,0.7561) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2899,-2.2879,-0.5939) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0899,4.3114,-0.7441) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0899,4.3114,-1.5141) mvmt=(0.0182,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.189,92.506) lpos=(-11.090,4.311,-1.514) lprev=(-11.108,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2649,0.1633,0.1111) 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.2899,-0.0767,0.0061) 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.2899,-0.0767,0.0061) out=(-0.2899,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0899,4.3114,-0.7641) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.189,93.256) lpos=(-11.090,4.311,-0.764) lprev=(-11.108,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2649,0.1633,0.8611) 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.2899,-0.0767,0.7561) 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.2899,-2.2879,-0.5939) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0899,4.3114,-0.7441) mvmt=(0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0384,4.5095,-0.5591) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.538,6.990,93.461) lpos=(-11.038,4.510,-0.559) lprev=(-11.090,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0384,4.5095,-0.5591) mvmt=(0.0515,0.1981,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=(-1.2134,0.3615,1.0661) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,0.1215,0.9611) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,-2.0898,-0.3889) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0384,4.5095,-0.5391) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0384,4.5095,-0.5591) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.538,6.990,93.461) lpos=(-11.038,4.510,-0.559) lprev=(-11.090,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0384,4.5095,-0.5591) mvmt=(0.0515,0.1981,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=(-1.2134,0.3615,1.0661) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,0.1215,0.9611) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,-2.0898,-0.3889) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0384,4.5095,-0.5391) mvmt=(0.0515,0.1981,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0384,4.3114,-0.7641) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.538,7.189,93.256) lpos=(-11.038,4.311,-0.764) lprev=(-11.090,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2134,0.1633,0.8611) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,-0.0767,0.7561) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,-2.2879,-0.5939) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0384,4.3114,-0.7441) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0384,4.3114,-1.5141) mvmt=(0.0515,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.538,7.189,92.506) lpos=(-11.038,4.311,-1.514) lprev=(-11.090,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2134,0.1633,0.1111) mvmt=(0.0515,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,-0.0767,0.0061) mvmt=(0.0515,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2384,-0.0767,0.0061) out=(-0.2384,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0384,4.3114,-0.7641) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.538,7.189,93.256) lpos=(-11.038,4.311,-0.764) lprev=(-11.090,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2134,0.1633,0.8611) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,-0.0767,0.7561) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2384,-2.2879,-0.5939) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0384,4.3114,-0.7441) mvmt=(0.0515,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9454,4.5194,-0.5489) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.445,6.981,93.471) lpos=(-10.945,4.519,-0.549) lprev=(-11.038,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9454,4.5194,-0.5489) mvmt=(0.0929,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.1205,0.3714,1.0763) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,0.1314,0.9713) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,-2.0799,-0.3787) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9454,4.5194,-0.5289) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9454,4.5194,-0.5489) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.445,6.981,93.471) lpos=(-10.945,4.519,-0.549) lprev=(-11.038,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9454,4.5194,-0.5489) mvmt=(0.0929,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.1205,0.3714,1.0763) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,0.1314,0.9713) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,-2.0799,-0.3787) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9454,4.5194,-0.5289) mvmt=(0.0929,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9454,4.3114,-0.7641) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.445,7.189,93.256) lpos=(-10.945,4.311,-0.764) lprev=(-11.038,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1205,0.1633,0.8611) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,-0.0767,0.7561) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,-2.2879,-0.5939) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9454,4.3114,-0.7441) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9454,4.3114,-1.5141) mvmt=(0.0929,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.445,7.189,92.506) lpos=(-10.945,4.311,-1.514) lprev=(-11.038,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1205,0.1633,0.1111) mvmt=(0.0929,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,-0.0767,0.0061) mvmt=(0.0929,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1454,-0.0767,0.0061) out=(-0.1454,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9454,4.3114,-0.7641) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.445,7.189,93.256) lpos=(-10.945,4.311,-0.764) lprev=(-11.038,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1205,0.1633,0.8611) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,-0.0767,0.7561) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1454,-2.2879,-0.5939) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9454,4.3114,-0.7441) mvmt=(0.0929,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8240,4.5154,-0.5530) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.324,6.985,93.467) lpos=(-10.824,4.515,-0.553) lprev=(-10.945,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8240,4.5154,-0.5530) mvmt=(0.1215,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=(-0.9990,0.3674,1.0722) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,0.1274,0.9672) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,-2.0839,-0.3828) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8240,4.5154,-0.5330) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8240,4.5154,-0.5530) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.324,6.985,93.467) lpos=(-10.824,4.515,-0.553) lprev=(-10.945,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8240,4.5154,-0.5530) mvmt=(0.1215,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=(-0.9990,0.3674,1.0722) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,0.1274,0.9672) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,-2.0839,-0.3828) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8240,4.5154,-0.5330) mvmt=(0.1215,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8240,4.3114,-0.7641) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.324,7.189,93.256) lpos=(-10.824,4.311,-0.764) lprev=(-10.945,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9990,0.1633,0.8611) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,-0.0767,0.7561) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,-2.2879,-0.5939) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8240,4.3114,-0.7441) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8240,4.3114,-1.5141) mvmt=(0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.324,7.189,92.506) lpos=(-10.824,4.311,-1.514) lprev=(-10.945,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9990,0.1633,0.1111) mvmt=(0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,-0.0767,0.0061) mvmt=(0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0240,-0.0767,0.0061) out=(-0.0240,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8240,4.3114,-0.7641) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.324,7.189,93.256) lpos=(-10.824,4.311,-0.764) lprev=(-10.945,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9990,0.1633,0.8611) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,-0.0767,0.7561) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0240,-2.2879,-0.5939) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8240,4.3114,-0.7441) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7049,4.5113,-0.5572) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,6.989,93.463) lpos=(-10.705,4.511,-0.557) lprev=(-10.824,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7049,4.5113,-0.5572) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8799,0.3633,1.0680) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,0.1233,0.9630) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,-2.0880,-0.3870) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7049,4.5113,-0.5372) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7049,4.5113,-0.5572) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,6.989,93.463) lpos=(-10.705,4.511,-0.557) lprev=(-10.824,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7049,4.5113,-0.5572) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8799,0.3633,1.0680) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,0.1233,0.9630) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,-2.0880,-0.3870) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7049,4.5113,-0.5372) mvmt=(0.1190,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7049,4.3114,-0.7641) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.189,93.256) lpos=(-10.705,4.311,-0.764) lprev=(-10.824,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8799,0.1633,0.8611) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,-0.0767,0.7561) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,-2.2879,-0.5939) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7049,4.3114,-0.7441) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7049,4.3114,-1.5141) mvmt=(0.1190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.189,92.506) lpos=(-10.705,4.311,-1.514) lprev=(-10.824,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8799,0.1633,0.1111) mvmt=(0.1190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,-0.0767,0.0061) mvmt=(0.1190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0951,-0.0767,0.0061) out=(0.0951,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7049,4.3114,-0.7641) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.189,93.256) lpos=(-10.705,4.311,-0.764) lprev=(-10.824,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8799,0.1633,0.8611) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,-0.0767,0.7561) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0951,-2.2879,-0.5939) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7049,4.3114,-0.7441) mvmt=(0.1190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5889,4.5062,-0.5625) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.994,93.457) lpos=(-10.589,4.506,-0.563) lprev=(-10.705,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5889,4.5062,-0.5625) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7639,0.3582,1.0627) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,0.1182,0.9577) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,-2.0931,-0.3923) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5889,4.5062,-0.5425) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5889,4.5062,-0.5625) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.994,93.457) lpos=(-10.589,4.506,-0.563) lprev=(-10.705,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5889,4.5062,-0.5625) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7639,0.3582,1.0627) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,0.1182,0.9577) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,-2.0931,-0.3923) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5889,4.5062,-0.5425) mvmt=(0.1160,0.1948,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5889,4.3114,-0.7641) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.189,93.256) lpos=(-10.589,4.311,-0.764) lprev=(-10.705,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7639,0.1633,0.8611) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,-0.0767,0.7561) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,-2.2879,-0.5939) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5889,4.3114,-0.7441) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5889,4.3114,-1.5141) mvmt=(0.1160,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.189,92.506) lpos=(-10.589,4.311,-1.514) lprev=(-10.705,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7639,0.1633,0.1111) mvmt=(0.1160,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,-0.0767,0.0061) mvmt=(0.1160,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2111,-0.0767,0.0061) out=(0.2111,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5889,4.3114,-0.7641) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.189,93.256) lpos=(-10.589,4.311,-0.764) lprev=(-10.705,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7639,0.1633,0.8611) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,-0.0767,0.7561) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2111,-2.2879,-0.5939) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5889,4.3114,-0.7441) mvmt=(0.1160,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4720,4.5079,-0.5608) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.992,93.459) lpos=(-10.472,4.508,-0.561) lprev=(-10.589,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4720,4.5079,-0.5608) mvmt=(0.1170,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.6470,0.3598,1.0644) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,0.1198,0.9594) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,-2.0914,-0.3906) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2883,-2.8213,2.4637) mvmt=(-0.1349,0.1847,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5079,-0.5408) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5079,-0.5608) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.992,93.459) lpos=(-10.472,4.508,-0.561) lprev=(-10.589,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4720,4.5079,-0.5608) mvmt=(0.1170,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.6470,0.3598,1.0644) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,0.1198,0.9594) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,-2.0914,-0.3906) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2883,-2.8213,2.4637) mvmt=(-0.1349,0.1847,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5079,-0.5408) mvmt=(0.1170,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.3114,-0.7641) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,7.189,93.256) lpos=(-10.472,4.311,-0.764) lprev=(-10.589,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.1633,0.8611) 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.3280,-0.0767,0.7561) 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.3280,-2.2879,-0.5939) 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.4720,4.3114,-0.7441) 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.4720,4.3114,-1.5141) mvmt=(0.1170,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,7.189,92.506) lpos=(-10.472,4.311,-1.514) lprev=(-10.589,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.1633,0.1111) 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.3280,-0.0767,0.0061) 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.3280,-0.0767,0.0061) out=(0.3280,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4720,4.3114,-0.7641) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,7.189,93.256) lpos=(-10.472,4.311,-0.764) lprev=(-10.589,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.1633,0.8611) 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.3280,-0.0767,0.7561) 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.3280,-2.2879,-0.5939) 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.4720,4.3114,-0.7441) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3533,4.5106,-0.5580) mvmt=(0.1186,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3533,4.5106,-0.5580) mvmt=(0.1186,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,6.989,93.462) lpos=(-10.353,4.511,-0.558) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3533,4.5106,-0.5580) mvmt=(0.1186,0.1992,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.5283,0.3626,1.0672) mvmt=(0.1186,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5283,0.3626,1.0672) out=(-0.5283,0.3626,1.3914) delta=(0.0000,0.0000,0.3241) deltaMag=0.3241 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4598 dpPos=0.2508 dpMove=-0.4243 iDist=0.5402 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.3533,4.5106,-0.2338) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,6.989,93.786) lpos=(-10.353,4.511,-0.234) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3533,4.5106,-0.2338) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[push-back] site=adjust_sphere in=(-10.3533,4.5106,-0.2338) out=(-10.3533,4.5106,-0.2338) 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.4598->0.4598 dpPos=-0.2338 dpMove=-0.2759 iDist=2.5876 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.3533,4.5106,-0.2338) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5283,0.3626,1.3914) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[push-back-disp] site=dispatch center=(0.4467,0.1226,1.2864) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[push-back-disp] site=dispatch center=(0.4467,-2.0887,-0.0636) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[push-back-disp] site=dispatch center=(0.3324,-2.7111,2.7907) mvmt=(-0.1367,0.1873,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[push-back-disp] site=dispatch center=(-10.3533,4.5106,-0.2138) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[push-back-disp] site=dispatch center=(-10.3533,4.5106,-0.2338) mvmt=(0.1186,0.1992,0.5303) collide=False insertType=1 objState=0x303 winterp=0.4598 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,6.989,93.786) lpos=(-10.353,4.511,-0.234) lprev=(-10.472,4.311,-0.764) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,6.989,93.462) lpos=(-10.353,4.511,-0.558) lprev=(-10.472,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3533,4.3114,-0.7641) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,7.189,93.256) lpos=(-10.353,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5283,0.1633,0.8611) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4598 return=-1 +[push-back-disp] site=dispatch center=(-10.3533,4.3114,-0.7641) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,7.189,93.256) lpos=(-10.353,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5283,0.1633,0.8611) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5283,0.1633,0.8611) out=(-0.5283,0.1633,1.1921) delta=(0.0000,0.0000,0.3310) deltaMag=0.3310 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4483 dpPos=0.2459 dpMove=-0.4243 iDist=0.5517 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3533,4.3114,-0.4331) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,7.189,93.587) lpos=(-10.353,4.311,-0.433) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3533,4.3114,-0.4331) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 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.3533,4.3114,-0.4331) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5283,0.1633,1.1921) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.4467,-0.0767,1.0872) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.4467,-2.2879,-0.2629) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.5156,-2.7893,2.5914) mvmt=(0.0465,0.1091,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(-10.3533,4.3114,-0.4131) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(-10.3533,4.3114,-0.4331) mvmt=(0.1186,0.0000,0.3310) collide=False insertType=1 objState=0x303 winterp=0.4483 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.853,7.189,93.587) lpos=(-10.353,4.311,-0.433) lprev=(-10.472,4.311,-0.764) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4720,4.5222,-0.4210) mvmt=(0.0000,0.2109,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5222,-0.4210) mvmt=(0.0000,0.2109,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.978,93.599) lpos=(-10.472,4.522,-0.421) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4720,4.5222,-0.4210) mvmt=(0.0000,0.2109,0.3431) 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.4720,4.5222,-0.4210) mvmt=(0.0000,0.2109,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6470,0.3742,1.2042) mvmt=(0.0000,0.2109,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,0.1342,1.0992) mvmt=(0.0000,0.2109,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,-2.0771,-0.2508) mvmt=(0.0000,0.2109,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2751,-2.8157,2.6035) mvmt=(-0.1940,0.0827,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5222,-0.4010) mvmt=(0.0000,0.2109,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.978,93.599) lpos=(-10.472,4.522,-0.421) lprev=(-10.472,4.311,-0.764) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3521,4.5198,-0.4234) mvmt=(0.1199,0.2085,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3521,4.5198,-0.4234) mvmt=(0.1199,0.2085,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.852,6.980,93.597) lpos=(-10.352,4.520,-0.423) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3521,4.5198,-0.4234) mvmt=(0.1199,0.2085,0.3407) 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.3521,4.5198,-0.4234) mvmt=(0.1199,0.2085,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5271,0.3718,1.2018) mvmt=(0.1199,0.2085,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4480,0.1318,1.0968) mvmt=(0.1199,0.2085,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4480,-2.0795,-0.2532) mvmt=(0.1199,0.2085,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3244,-2.7063,2.6011) mvmt=(-0.1447,0.1921,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3521,4.5198,-0.4034) mvmt=(0.1199,0.2085,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.852,6.980,93.597) lpos=(-10.352,4.520,-0.423) lprev=(-10.472,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3521,4.3114,-0.7641) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.852,7.189,93.256) lpos=(-10.352,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5271,0.1633,0.8611) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3521,4.3114,-0.7641) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.852,7.189,93.256) lpos=(-10.352,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5271,0.1633,0.8611) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5271,0.1633,0.8611) out=(-0.5271,0.1633,1.1921) delta=(0.0000,0.0000,0.3310) deltaMag=0.3310 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4483 dpPos=0.2459 dpMove=-0.4243 iDist=0.5517 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3521,4.3114,-0.4331) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.852,7.189,93.587) lpos=(-10.352,4.311,-0.433) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3521,4.3114,-0.4331) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 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.3521,4.3114,-0.4331) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5271,0.1633,1.1921) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.4480,-0.0767,1.0872) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.4480,-2.2879,-0.2629) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.5161,-2.7881,2.5914) mvmt=(0.0470,0.1103,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(-10.3521,4.3114,-0.4131) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(-10.3521,4.3114,-0.4331) mvmt=(0.1199,0.0000,0.3310) collide=False insertType=1 objState=0x303 winterp=0.4483 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.852,7.189,93.587) lpos=(-10.352,4.311,-0.433) lprev=(-10.472,4.311,-0.764) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4720,4.5230,-0.4202) mvmt=(0.0000,0.2116,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5230,-0.4202) mvmt=(0.0000,0.2116,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.977,93.600) lpos=(-10.472,4.523,-0.420) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4720,4.5230,-0.4202) mvmt=(0.0000,0.2116,0.3438) 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.4720,4.5230,-0.4202) mvmt=(0.0000,0.2116,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6470,0.3750,1.2050) mvmt=(0.0000,0.2116,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,0.1350,1.1000) mvmt=(0.0000,0.2116,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,-2.0763,-0.2500) mvmt=(0.0000,0.2116,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2744,-2.8154,2.6043) mvmt=(-0.1947,0.0830,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5230,-0.4002) mvmt=(0.0000,0.2116,0.3438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.977,93.600) lpos=(-10.472,4.523,-0.420) lprev=(-10.472,4.311,-0.764) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3608,4.5171,-0.4261) mvmt=(0.1112,0.2057,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3608,4.5171,-0.4261) mvmt=(0.1112,0.2057,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.861,6.983,93.594) lpos=(-10.361,4.517,-0.426) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3608,4.5171,-0.4261) mvmt=(0.1112,0.2057,0.3379) 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.3608,4.5171,-0.4261) mvmt=(0.1112,0.2057,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5358,0.3691,1.1991) mvmt=(0.1112,0.2057,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4392,0.1291,1.0941) mvmt=(0.1112,0.2057,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4392,-2.0822,-0.2559) mvmt=(0.1112,0.2057,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3235,-2.7154,2.5984) mvmt=(-0.1456,0.1830,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3608,4.5171,-0.4061) mvmt=(0.1112,0.2057,0.3379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.861,6.983,93.594) lpos=(-10.361,4.517,-0.426) lprev=(-10.472,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3608,4.3114,-0.7641) mvmt=(0.1112,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.861,7.189,93.256) lpos=(-10.361,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5358,0.1633,0.8611) mvmt=(0.1112,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3608,4.3114,-0.7641) mvmt=(0.1112,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.861,7.189,93.256) lpos=(-10.361,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5358,0.1633,0.8611) mvmt=(0.1112,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5358,0.1633,0.8611) out=(-0.5358,0.1633,1.1921) delta=(0.0000,0.0000,0.3310) deltaMag=0.3310 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4483 dpPos=0.2459 dpMove=-0.4243 iDist=0.5517 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3608,4.3114,-0.4331) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.861,7.189,93.587) lpos=(-10.361,4.311,-0.433) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3608,4.3114,-0.4331) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 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.3608,4.3114,-0.4331) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5358,0.1633,1.1921) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.4392,-0.0767,1.0872) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.4392,-2.2879,-0.2629) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(0.5127,-2.7961,2.5914) mvmt=(0.0436,0.1022,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(-10.3608,4.3114,-0.4131) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4483 return=-1 +[push-back-disp] site=dispatch center=(-10.3608,4.3114,-0.4331) mvmt=(0.1112,0.0000,0.3310) collide=False insertType=1 objState=0x303 winterp=0.4483 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.861,7.189,93.587) lpos=(-10.361,4.311,-0.433) lprev=(-10.472,4.311,-0.764) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4720,4.5248,-0.4185) mvmt=(0.0000,0.2134,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5248,-0.4185) mvmt=(0.0000,0.2134,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.975,93.602) lpos=(-10.472,4.525,-0.418) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4720,4.5248,-0.4185) mvmt=(0.0000,0.2134,0.3456) 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.4720,4.5248,-0.4185) mvmt=(0.0000,0.2134,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6470,0.3767,1.2067) mvmt=(0.0000,0.2134,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,0.1367,1.1017) mvmt=(0.0000,0.2134,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,-2.0746,-0.2483) mvmt=(0.0000,0.2134,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2728,-2.8147,2.6060) mvmt=(-0.1963,0.0837,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5248,-0.3985) mvmt=(0.0000,0.2134,0.3456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.975,93.602) lpos=(-10.472,4.525,-0.418) lprev=(-10.472,4.311,-0.764) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4328,4.5105,-0.4327) mvmt=(0.0392,0.1991,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4328,4.5105,-0.4327) mvmt=(0.0392,0.1991,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.933,6.989,93.587) lpos=(-10.433,4.511,-0.433) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4328,4.5105,-0.4327) mvmt=(0.0392,0.1991,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.4328,4.5105,-0.4327) mvmt=(0.0392,0.1991,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.6078,0.3625,1.1925) mvmt=(0.0392,0.1991,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3672,0.1225,1.0875) mvmt=(0.0392,0.1991,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3672,-2.0888,-0.2625) mvmt=(0.0392,0.1991,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3013,-2.7842,2.5918) mvmt=(-0.1678,0.1142,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4328,4.5105,-0.4127) mvmt=(0.0392,0.1991,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.933,6.989,93.587) lpos=(-10.433,4.511,-0.433) lprev=(-10.472,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4328,4.3114,-0.7641) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.933,7.189,93.256) lpos=(-10.433,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6078,0.1633,0.8611) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3672,-0.0767,0.7561) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3672,-2.2879,-0.5939) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4328,4.3114,-0.7441) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4328,4.3114,-1.5141) mvmt=(0.0392,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.933,7.189,92.506) lpos=(-10.433,4.311,-1.514) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6078,0.1633,0.1111) 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.3672,-0.0767,0.0061) 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.3672,-0.0767,0.0061) out=(0.3672,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4328,4.3114,-0.7641) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.933,7.189,93.256) lpos=(-10.433,4.311,-0.764) lprev=(-10.472,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6078,0.1633,0.8611) 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.3672,-0.0767,0.7561) 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.3672,-2.2879,-0.5939) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4328,4.3114,-0.7441) mvmt=(0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4284,4.5254,-0.5426) mvmt=(0.0044,0.2140,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4284,4.5254,-0.5426) mvmt=(0.0044,0.2140,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.928,6.975,93.477) lpos=(-10.428,4.525,-0.543) lprev=(-10.433,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4284,4.5254,-0.5426) mvmt=(0.0044,0.2140,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6034,0.3774,1.0826) mvmt=(0.0044,0.2140,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3716,0.1374,0.9776) mvmt=(0.0044,0.2140,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3716,-2.0739,-0.3725) mvmt=(0.0044,0.2140,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2893,-2.7744,2.4819) mvmt=(-0.1952,0.0880,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4284,4.5254,-0.5227) mvmt=(0.0044,0.2140,0.2214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.928,6.975,93.477) lpos=(-10.428,4.525,-0.543) lprev=(-10.433,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4284,4.3114,-0.7641) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.928,7.189,93.256) lpos=(-10.428,4.311,-0.764) lprev=(-10.433,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6034,0.1633,0.8611) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3716,-0.0767,0.7561) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3716,-2.2879,-0.5939) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4284,4.3114,-0.7441) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4284,4.3114,-1.5141) mvmt=(0.0044,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.928,7.189,92.506) lpos=(-10.428,4.311,-1.514) lprev=(-10.433,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6034,0.1633,0.1111) mvmt=(0.0044,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3716,-0.0767,0.0061) mvmt=(0.0044,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3716,-0.0767,0.0061) out=(0.3716,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4284,4.3114,-0.7641) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.928,7.189,93.256) lpos=(-10.428,4.311,-0.764) lprev=(-10.433,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6034,0.1633,0.8611) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3716,-0.0767,0.7561) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3716,-2.2879,-0.5939) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4284,4.3114,-0.7441) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4625,4.5232,-0.5450) mvmt=(-0.0341,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4625,4.5232,-0.5450) mvmt=(-0.0341,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.962,6.977,93.475) lpos=(-10.462,4.523,-0.545) lprev=(-10.428,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4625,4.5232,-0.5450) mvmt=(-0.0341,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6375,0.3751,1.0802) mvmt=(-0.0341,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3375,0.1351,0.9752) mvmt=(-0.0341,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3375,-2.0761,-0.3748) mvmt=(-0.0341,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2780,-2.8066,2.4795) mvmt=(-0.2082,0.0518,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4625,4.5232,-0.5250) mvmt=(-0.0341,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.962,6.977,93.475) lpos=(-10.462,4.523,-0.545) lprev=(-10.428,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4625,4.3114,-0.7641) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.962,7.189,93.256) lpos=(-10.462,4.311,-0.764) lprev=(-10.428,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6375,0.1633,0.8611) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3375,-0.0767,0.7561) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3375,-2.2879,-0.5939) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4625,4.3114,-0.7441) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4625,4.3114,-1.5141) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.962,7.189,92.506) lpos=(-10.462,4.311,-1.514) lprev=(-10.428,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6375,0.1633,0.1111) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3375,-0.0767,0.0061) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3375,-0.0767,0.0061) out=(0.3375,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4625,4.3114,-0.7641) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.962,7.189,93.256) lpos=(-10.462,4.311,-0.764) lprev=(-10.428,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6375,0.1633,0.8611) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3375,-0.0767,0.7561) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3375,-2.2879,-0.5939) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4625,4.3114,-0.7441) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5328,4.5173,-0.5510) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,6.983,93.469) lpos=(-10.533,4.517,-0.551) lprev=(-10.462,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5328,4.5173,-0.5510) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7078,0.3692,1.0742) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,0.1292,0.9692) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,-2.0820,-0.3808) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2558,-2.8735,2.4735) mvmt=(-0.2170,0.0161,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5328,4.5173,-0.5310) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5328,4.5173,-0.5510) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,6.983,93.469) lpos=(-10.533,4.517,-0.551) lprev=(-10.462,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5328,4.5173,-0.5510) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7078,0.3692,1.0742) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,0.1292,0.9692) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,-2.0820,-0.3808) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2558,-2.8735,2.4735) mvmt=(-0.2170,0.0161,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5328,4.5173,-0.5310) mvmt=(-0.0703,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5328,4.3114,-0.7641) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.189,93.256) lpos=(-10.533,4.311,-0.764) lprev=(-10.462,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7078,0.1633,0.8611) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,-0.0767,0.7561) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,-2.2879,-0.5939) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5328,4.3114,-0.7441) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5328,4.3114,-1.5141) mvmt=(-0.0703,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.189,92.506) lpos=(-10.533,4.311,-1.514) lprev=(-10.462,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7078,0.1633,0.1111) mvmt=(-0.0703,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,-0.0767,0.0061) mvmt=(-0.0703,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2672,-0.0767,0.0061) out=(0.2672,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5328,4.3114,-0.7641) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.033,7.189,93.256) lpos=(-10.533,4.311,-0.764) lprev=(-10.462,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7078,0.1633,0.8611) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,-0.0767,0.7561) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2672,-2.2879,-0.5939) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5328,4.3114,-0.7441) mvmt=(-0.0703,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6369,4.5101,-0.5585) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,6.990,93.461) lpos=(-10.637,4.510,-0.559) lprev=(-10.533,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6369,4.5101,-0.5585) mvmt=(-0.1041,0.1987,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.8119,0.3620,1.0667) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,0.1220,0.9617) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,-2.0892,-0.3883) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2216,-2.9721,2.4660) mvmt=(-0.2236,-0.0178,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6369,4.5101,-0.5385) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6369,4.5101,-0.5585) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,6.990,93.461) lpos=(-10.637,4.510,-0.559) lprev=(-10.533,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6369,4.5101,-0.5585) mvmt=(-0.1041,0.1987,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.8119,0.3620,1.0667) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,0.1220,0.9617) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,-2.0892,-0.3883) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2216,-2.9721,2.4660) mvmt=(-0.2236,-0.0178,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6369,4.5101,-0.5385) mvmt=(-0.1041,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6369,4.3114,-0.7641) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.189,93.256) lpos=(-10.637,4.311,-0.764) lprev=(-10.533,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8119,0.1633,0.8611) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,-0.0767,0.7561) mvmt=(-0.1041,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,-2.2879,-0.5939) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6369,4.3114,-0.7441) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6369,4.3114,-1.5141) mvmt=(-0.1041,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.189,92.506) lpos=(-10.637,4.311,-1.514) lprev=(-10.533,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8119,0.1633,0.1111) mvmt=(-0.1041,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,-0.0767,0.0061) mvmt=(-0.1041,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1631,-0.0767,0.0061) out=(0.1631,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6369,4.3114,-0.7641) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.189,93.256) lpos=(-10.637,4.311,-0.764) lprev=(-10.533,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8119,0.1633,0.8611) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,-0.0767,0.7561) mvmt=(-0.1041,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1631,-2.2879,-0.5939) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6369,4.3114,-0.7441) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7487,4.5164,-0.5519) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.249,6.984,93.468) lpos=(-10.749,4.516,-0.552) lprev=(-10.637,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7487,4.5164,-0.5519) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9238,0.3684,1.0732) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,0.1284,0.9683) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,-2.0829,-0.3818) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1719,-3.0725,2.4726) mvmt=(-0.2325,-0.0224,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7487,4.5164,-0.5320) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7487,4.5164,-0.5519) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.249,6.984,93.468) lpos=(-10.749,4.516,-0.552) lprev=(-10.637,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7487,4.5164,-0.5519) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9238,0.3684,1.0732) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,0.1284,0.9683) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,-2.0829,-0.3818) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1719,-3.0725,2.4726) mvmt=(-0.2325,-0.0224,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7487,4.5164,-0.5320) mvmt=(-0.1119,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7487,4.3114,-0.7641) mvmt=(-0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.249,7.189,93.256) lpos=(-10.749,4.311,-0.764) lprev=(-10.637,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9238,0.1633,0.8611) mvmt=(-0.1119,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,-0.0767,0.7561) mvmt=(-0.1119,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,-2.2879,-0.5939) mvmt=(-0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7487,4.3114,-0.7441) mvmt=(-0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7487,4.3114,-1.5141) mvmt=(-0.1119,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.249,7.189,92.506) lpos=(-10.749,4.311,-1.514) lprev=(-10.637,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9238,0.1633,0.1111) mvmt=(-0.1119,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,-0.0767,0.0061) mvmt=(-0.1119,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0513,-0.0767,0.0061) out=(0.0513,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7487,4.3114,-0.7641) mvmt=(-0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.249,7.189,93.256) lpos=(-10.749,4.311,-0.764) lprev=(-10.637,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9238,0.1633,0.8611) mvmt=(-0.1119,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,-0.0767,0.7561) mvmt=(-0.1119,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0513,-2.2879,-0.5939) mvmt=(-0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7487,4.3114,-0.7441) mvmt=(-0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8536,4.5036,-0.5652) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.354,6.996,93.455) lpos=(-10.854,4.504,-0.565) lprev=(-10.749,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8536,4.5036,-0.5652) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0286,0.3555,1.0600) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,0.1155,0.9550) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,-2.0957,-0.3950) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8536,4.5036,-0.5452) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8536,4.5036,-0.5652) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.354,6.996,93.455) lpos=(-10.854,4.504,-0.565) lprev=(-10.749,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8536,4.5036,-0.5652) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0286,0.3555,1.0600) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,0.1155,0.9550) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,-2.0957,-0.3950) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8536,4.5036,-0.5452) mvmt=(-0.1049,0.1922,0.1988) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8536,4.3114,-0.7641) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.354,7.189,93.256) lpos=(-10.854,4.311,-0.764) lprev=(-10.749,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0286,0.1633,0.8611) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,-0.0767,0.7561) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,-2.2879,-0.5939) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8536,4.3114,-0.7441) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8536,4.3114,-1.5141) mvmt=(-0.1049,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.354,7.189,92.506) lpos=(-10.854,4.311,-1.514) lprev=(-10.749,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0286,0.1633,0.1111) mvmt=(-0.1049,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,-0.0767,0.0061) mvmt=(-0.1049,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0536,-0.0767,0.0061) out=(-0.0536,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8536,4.3114,-0.7641) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.354,7.189,93.256) lpos=(-10.854,4.311,-0.764) lprev=(-10.749,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0286,0.1633,0.8611) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,-0.0767,0.7561) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0536,-2.2879,-0.5939) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8536,4.3114,-0.7441) mvmt=(-0.1049,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9621,4.5102,-0.5584) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,6.990,93.462) lpos=(-10.962,4.510,-0.558) lprev=(-10.854,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9621,4.5102,-0.5584) mvmt=(-0.1085,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.1371,0.3622,1.0668) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,0.1222,0.9618) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.0891,-0.3882) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.5102,-0.5384) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.5102,-0.5584) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,6.990,93.462) lpos=(-10.962,4.510,-0.558) lprev=(-10.854,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9621,4.5102,-0.5584) mvmt=(-0.1085,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.1371,0.3622,1.0668) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,0.1222,0.9618) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.0891,-0.3882) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.5102,-0.5384) mvmt=(-0.1085,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3114,-0.7641) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,7.189,93.256) lpos=(-10.962,4.311,-0.764) lprev=(-10.854,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1371,0.1633,0.8611) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-0.0767,0.7561) mvmt=(-0.1085,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.2879,-0.5939) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3114,-0.7441) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3114,-1.5141) mvmt=(-0.1085,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,7.189,92.506) lpos=(-10.962,4.311,-1.514) lprev=(-10.854,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1371,0.1633,0.1111) mvmt=(-0.1085,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-0.0767,0.0061) mvmt=(-0.1085,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1621,-0.0767,0.0061) out=(-0.1621,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9621,4.3114,-0.7641) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,7.189,93.256) lpos=(-10.962,4.311,-0.764) lprev=(-10.854,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1371,0.1633,0.8611) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-0.0767,0.7561) mvmt=(-0.1085,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.2879,-0.5939) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3114,-0.7441) mvmt=(-0.1085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0714,4.5117,-0.5569) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.988,93.463) lpos=(-11.071,4.512,-0.557) lprev=(-10.962,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5117,-0.5569) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2464,0.3636,1.0683) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1236,0.9633) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0876,-0.3867) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5117,-0.5369) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5117,-0.5569) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.988,93.463) lpos=(-11.071,4.512,-0.557) lprev=(-10.962,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5117,-0.5569) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2464,0.3636,1.0683) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1236,0.9633) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0876,-0.3867) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5117,-0.5369) mvmt=(-0.1093,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.3114,-0.7641) mvmt=(-0.1093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.189,93.256) lpos=(-11.071,4.311,-0.764) lprev=(-10.962,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2464,0.1633,0.8611) mvmt=(-0.1093,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-0.0767,0.7561) mvmt=(-0.1093,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.2879,-0.5939) mvmt=(-0.1093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.3114,-0.7441) mvmt=(-0.1093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.3114,-1.5141) mvmt=(-0.1093,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.189,92.506) lpos=(-11.071,4.311,-1.514) lprev=(-10.962,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2464,0.1633,0.1111) mvmt=(-0.1093,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-0.0767,0.0061) mvmt=(-0.1093,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2714,-0.0767,0.0061) out=(-0.2714,-0.0767,0.7561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0714,4.3114,-0.7641) mvmt=(-0.1093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.189,93.256) lpos=(-11.071,4.311,-0.764) lprev=(-10.962,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2464,0.1633,0.8611) mvmt=(-0.1093,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-0.0767,0.7561) mvmt=(-0.1093,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.2879,-0.5939) mvmt=(-0.1093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.3114,-0.7441) mvmt=(-0.1093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1846,4.5189,-0.5494) mvmt=(-0.1132,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1846,4.5189,-0.5494) mvmt=(-0.1132,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.685,6.981,93.471) lpos=(-11.185,4.519,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1846,4.5189,-0.5494) mvmt=(-0.1132,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.3596,0.3708,1.0758) mvmt=(-0.1132,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3846,0.1308,0.9708) mvmt=(-0.1132,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3846,-2.0804,-0.3792) mvmt=(-0.1132,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1846,4.5189,-0.5294) mvmt=(-0.1132,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.685,6.981,93.471) lpos=(-11.185,4.519,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5189,-0.5494) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.981,93.471) lpos=(-11.071,4.519,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5189,-0.5494) 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.2464,0.3708,1.0758) 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.2714,0.1308,0.9708) 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.2714,-2.0804,-0.3792) 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.0714,4.5189,-0.5294) 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.0714,4.5189,-0.5494) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.981,93.471) lpos=(-11.071,4.519,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5189,-0.5494) 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.2464,0.3708,1.0758) 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.2714,0.1308,0.9708) 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.2714,-2.0804,-0.3792) 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.0714,4.5189,-0.5294) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1850,4.5196,-0.5487) mvmt=(-0.1136,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1850,4.5196,-0.5487) mvmt=(-0.1136,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.685,6.980,93.471) lpos=(-11.185,4.520,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1850,4.5196,-0.5487) mvmt=(-0.1136,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.3600,0.3715,1.0765) mvmt=(-0.1136,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3850,0.1315,0.9715) mvmt=(-0.1136,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3850,-2.0797,-0.3785) mvmt=(-0.1136,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1850,4.5196,-0.5287) mvmt=(-0.1136,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.685,6.980,93.471) lpos=(-11.185,4.520,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5196,-0.5487) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.980,93.471) lpos=(-11.071,4.520,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5196,-0.5487) mvmt=(0.0000,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.2464,0.3715,1.0765) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1315,0.9715) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0797,-0.3785) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5196,-0.5287) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5196,-0.5487) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.980,93.471) lpos=(-11.071,4.520,-0.549) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5196,-0.5487) mvmt=(0.0000,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.2464,0.3715,1.0765) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1315,0.9715) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0797,-0.3785) mvmt=(0.0000,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5196,-0.5287) mvmt=(0.0000,0.2082,0.2154) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1785,4.5077,-0.5610) mvmt=(-0.1071,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1785,4.5077,-0.5610) mvmt=(-0.1071,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.678,6.992,93.459) lpos=(-11.178,4.508,-0.561) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1785,4.5077,-0.5610) mvmt=(-0.1071,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=(-1.3535,0.3596,1.0642) mvmt=(-0.1071,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3785,0.1196,0.9592) mvmt=(-0.1071,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3785,-2.0916,-0.3908) mvmt=(-0.1071,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1785,4.5077,-0.5410) mvmt=(-0.1071,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.678,6.992,93.459) lpos=(-11.178,4.508,-0.561) lprev=(-11.071,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5077,-0.5610) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.992,93.459) lpos=(-11.071,4.508,-0.561) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5077,-0.5610) mvmt=(0.0000,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=(-1.2464,0.3596,1.0642) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1196,0.9592) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0916,-0.3908) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5077,-0.5410) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5077,-0.5610) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.992,93.459) lpos=(-11.071,4.508,-0.561) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5077,-0.5610) mvmt=(0.0000,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=(-1.2464,0.3596,1.0642) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1196,0.9592) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0916,-0.3908) mvmt=(0.0000,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5077,-0.5410) mvmt=(0.0000,0.1963,0.2031) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1732,4.5069,-0.5618) mvmt=(-0.1019,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1732,4.5069,-0.5618) mvmt=(-0.1019,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,6.993,93.458) lpos=(-11.173,4.507,-0.562) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1732,4.5069,-0.5618) mvmt=(-0.1019,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3483,0.3588,1.0634) mvmt=(-0.1019,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3732,0.1188,0.9584) mvmt=(-0.1019,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3732,-2.0924,-0.3916) mvmt=(-0.1019,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1732,4.5069,-0.5418) mvmt=(-0.1019,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,6.993,93.458) lpos=(-11.173,4.507,-0.562) lprev=(-11.071,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5069,-0.5618) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.993,93.458) lpos=(-11.071,4.507,-0.562) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5069,-0.5618) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2464,0.3588,1.0634) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1188,0.9584) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0924,-0.3916) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5069,-0.5418) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5069,-0.5618) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.993,93.458) lpos=(-11.071,4.507,-0.562) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5069,-0.5618) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2464,0.3588,1.0634) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1188,0.9584) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0924,-0.3916) mvmt=(0.0000,0.1955,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5069,-0.5418) mvmt=(0.0000,0.1955,0.2022) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1395,4.5113,-0.5573) mvmt=(-0.0681,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1395,4.5113,-0.5573) mvmt=(-0.0681,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.640,6.989,93.463) lpos=(-11.140,4.511,-0.557) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1395,4.5113,-0.5573) mvmt=(-0.0681,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3145,0.3632,1.0679) mvmt=(-0.0681,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3395,0.1232,0.9629) mvmt=(-0.0681,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3395,-2.0880,-0.3871) mvmt=(-0.0681,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1395,4.5113,-0.5373) mvmt=(-0.0681,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.640,6.989,93.463) lpos=(-11.140,4.511,-0.557) lprev=(-11.071,4.311,-0.764) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5113,-0.5573) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.989,93.463) lpos=(-11.071,4.511,-0.557) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5113,-0.5573) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2464,0.3632,1.0679) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1232,0.9629) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0880,-0.3871) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5113,-0.5373) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5113,-0.5573) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.989,93.463) lpos=(-11.071,4.511,-0.557) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0714,4.5113,-0.5573) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2464,0.3632,1.0679) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,0.1232,0.9629) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2714,-2.0880,-0.3871) mvmt=(0.0000,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0714,4.5113,-0.5373) mvmt=(0.0000,0.1999,0.2068) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0728,4.2049,-0.8742) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.295,93.146) lpos=(-11.073,4.205,-0.874) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2478,0.0569,0.7510) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2728,-0.1831,0.6460) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2728,-2.3944,-0.7040) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0728,4.2049,-0.8542) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0728,4.2049,-1.6242) mvmt=(-0.0014,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.295,92.396) lpos=(-11.073,4.205,-1.624) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2478,0.0569,0.0010) mvmt=(-0.0014,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2728,-0.1831,-0.1040) mvmt=(-0.0014,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2728,-0.1831,-0.1040) out=(-0.2728,-0.1831,0.6460) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0728,4.2049,-0.8742) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.295,93.146) lpos=(-11.073,4.205,-0.874) lprev=(-11.071,4.311,-0.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2478,0.0569,0.7510) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2728,-0.1831,0.6460) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2728,-2.3944,-0.7040) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0728,4.2049,-0.8542) mvmt=(-0.0014,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0741,4.0991,-0.9837) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.401,93.036) lpos=(-11.074,4.099,-0.984) lprev=(-11.073,4.205,-0.874) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2491,-0.0489,0.6415) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2741,-0.2889,0.5365) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2741,-2.5002,-0.8135) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0741,4.0991,-0.9637) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0741,4.0991,-1.7337) mvmt=(-0.0014,-0.1058,-0.8595) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.401,92.286) lpos=(-11.074,4.099,-1.734) lprev=(-11.073,4.205,-0.874) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2491,-0.0489,-0.1085) mvmt=(-0.0014,-0.1058,-0.8595) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2741,-0.2889,-0.2135) mvmt=(-0.0014,-0.1058,-0.8595) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2741,-0.2889,-0.2135) out=(-0.2741,-0.2889,0.5365) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0741,4.0991,-0.9837) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.401,93.036) lpos=(-11.074,4.099,-0.984) lprev=(-11.073,4.205,-0.874) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2491,-0.0489,0.6415) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2741,-0.2889,0.5365) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2741,-2.5002,-0.8135) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0741,4.0991,-0.9637) mvmt=(-0.0014,-0.1058,-0.1095) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0755,3.9946,-1.0918) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,7.505,92.928) lpos=(-11.075,3.995,-1.092) lprev=(-11.074,4.099,-0.984) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2505,-0.1534,0.5334) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2755,-0.3934,0.4284) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2755,-2.6047,-0.9216) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0755,3.9946,-1.0718) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0755,3.9946,-1.8418) mvmt=(-0.0013,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,7.505,92.178) lpos=(-11.075,3.995,-1.842) lprev=(-11.074,4.099,-0.984) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2505,-0.1534,-0.2166) mvmt=(-0.0013,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2755,-0.3934,-0.3216) mvmt=(-0.0013,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2755,-0.3934,-0.3216) out=(-0.2755,-0.3934,0.4284) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0755,3.9946,-1.0918) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,7.505,92.928) lpos=(-11.075,3.995,-1.092) lprev=(-11.074,4.099,-0.984) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2505,-0.1534,0.5334) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2755,-0.3934,0.4284) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2755,-2.6047,-0.9216) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0755,3.9946,-1.0718) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0768,3.8901,-1.1998) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,7.610,92.820) lpos=(-11.077,3.890,-1.200) lprev=(-11.075,3.995,-1.092) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2518,-0.2579,0.4254) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2768,-0.4979,0.3204) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2768,-2.7092,-1.0296) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0768,3.8901,-1.1798) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0768,3.8901,-1.9498) mvmt=(-0.0013,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,7.610,92.070) lpos=(-11.077,3.890,-1.950) lprev=(-11.075,3.995,-1.092) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2518,-0.2579,-0.3246) mvmt=(-0.0013,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2768,-0.4979,-0.4296) mvmt=(-0.0013,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2768,-0.4979,-0.4296) out=(-0.2768,-0.4979,0.3204) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0768,3.8901,-1.1998) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,7.610,92.820) lpos=(-11.077,3.890,-1.200) lprev=(-11.075,3.995,-1.092) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2518,-0.2579,0.4254) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2768,-0.4979,0.3204) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2768,-2.7092,-1.0296) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0768,3.8901,-1.1798) mvmt=(-0.0013,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0782,3.7815,-1.3122) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.718,92.708) lpos=(-11.078,3.782,-1.312) lprev=(-11.077,3.890,-1.200) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2532,-0.3665,0.3130) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2782,-0.6065,0.2080) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2782,-2.8178,-1.1420) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0782,3.7815,-1.2922) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0782,3.7815,-2.0622) mvmt=(-0.0014,-0.1086,-0.8624) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.718,91.958) lpos=(-11.078,3.782,-2.062) lprev=(-11.077,3.890,-1.200) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2532,-0.3665,-0.4370) mvmt=(-0.0014,-0.1086,-0.8624) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2782,-0.6065,-0.5420) mvmt=(-0.0014,-0.1086,-0.8624) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2782,-0.6065,-0.5420) out=(-0.2782,-0.6065,0.2080) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0782,3.7815,-1.3122) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.718,92.708) lpos=(-11.078,3.782,-1.312) lprev=(-11.077,3.890,-1.200) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2532,-0.3665,0.3130) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2782,-0.6065,0.2080) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2782,-2.8178,-1.1420) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0782,3.7815,-1.2922) mvmt=(-0.0014,-0.1086,-0.1124) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0795,3.6763,-1.4211) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.580,7.824,92.599) lpos=(-11.080,3.676,-1.421) lprev=(-11.078,3.782,-1.312) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2545,-0.4718,0.2041) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2795,-0.7118,0.0991) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2795,-2.9230,-1.2509) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0795,3.6763,-1.4011) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0795,3.6763,-2.1711) mvmt=(-0.0014,-0.1053,-0.8589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.580,7.824,91.849) lpos=(-11.080,3.676,-2.171) lprev=(-11.078,3.782,-1.312) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2545,-0.4718,-0.5459) mvmt=(-0.0014,-0.1053,-0.8589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2795,-0.7118,-0.6509) mvmt=(-0.0014,-0.1053,-0.8589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2795,-0.7118,-0.6509) out=(-0.2795,-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.0795,3.6763,-1.4211) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.580,7.824,92.599) lpos=(-11.080,3.676,-1.421) lprev=(-11.078,3.782,-1.312) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2545,-0.4718,0.2041) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2795,-0.7118,0.0991) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2795,-2.9230,-1.2509) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0795,3.6763,-1.4011) mvmt=(-0.0014,-0.1053,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0809,3.5731,-1.5278) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.927,92.492) lpos=(-11.081,3.573,-1.528) lprev=(-11.080,3.676,-1.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2559,-0.5749,0.0974) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-0.8149,-0.0076) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-3.0262,-1.3576) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0809,3.5731,-1.5078) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0809,3.5731,-2.2778) mvmt=(-0.0013,-0.1031,-0.8567) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.927,91.742) lpos=(-11.081,3.573,-2.278) lprev=(-11.080,3.676,-1.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2559,-0.5749,-0.6526) mvmt=(-0.0013,-0.1031,-0.8567) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-0.8149,-0.7576) mvmt=(-0.0013,-0.1031,-0.8567) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2809,-0.8149,-0.7576) out=(-0.2809,-0.8149,-0.0076) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0809,3.5731,-1.5278) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.927,92.492) lpos=(-11.081,3.573,-1.528) lprev=(-11.080,3.676,-1.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2559,-0.5749,0.0974) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-0.8149,-0.0076) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-3.0262,-1.3576) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0809,3.5731,-1.5078) mvmt=(-0.0013,-0.1031,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0822,3.4695,-1.6350) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,8.031,92.385) lpos=(-11.082,3.469,-1.635) lprev=(-11.081,3.573,-1.528) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2572,-0.6786,-0.0098) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2822,-0.9186,-0.1148) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2822,-3.1299,-1.4648) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0822,3.4695,-1.6150) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0822,3.4695,-2.3850) mvmt=(-0.0013,-0.1037,-0.8573) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,8.031,91.635) lpos=(-11.082,3.469,-2.385) lprev=(-11.081,3.573,-1.528) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2572,-0.6786,-0.7598) mvmt=(-0.0013,-0.1037,-0.8573) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2822,-0.9186,-0.8648) mvmt=(-0.0013,-0.1037,-0.8573) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2822,-0.9186,-0.8648) out=(-0.2822,-0.9186,-0.1148) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0822,3.4695,-1.6350) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.582,8.031,92.385) lpos=(-11.082,3.469,-1.635) lprev=(-11.081,3.573,-1.528) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2572,-0.6786,-0.0098) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2822,-0.9186,-0.1148) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2822,-3.1299,-1.4648) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0822,3.4695,-1.6150) mvmt=(-0.0013,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0835,3.3663,-1.7418) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,8.134,92.278) lpos=(-11.084,3.366,-1.742) lprev=(-11.082,3.469,-1.635) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2585,-0.7818,-0.1166) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-1.0218,-0.2216) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-3.2331,-1.5716) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0835,3.3663,-1.7218) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0835,3.3663,-2.4918) mvmt=(-0.0013,-0.1032,-0.8568) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,8.134,91.528) lpos=(-11.084,3.366,-2.492) lprev=(-11.082,3.469,-1.635) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2585,-0.7818,-0.8666) mvmt=(-0.0013,-0.1032,-0.8568) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-1.0218,-0.9716) mvmt=(-0.0013,-0.1032,-0.8568) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2835,-1.0218,-0.9716) out=(-0.2835,-1.0218,-0.2216) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0835,3.3663,-1.7418) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,8.134,92.278) lpos=(-11.084,3.366,-1.742) lprev=(-11.082,3.469,-1.635) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2585,-0.7818,-0.1166) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-1.0218,-0.2216) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-3.2331,-1.5716) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0835,3.3663,-1.7218) mvmt=(-0.0013,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0848,3.2644,-1.8471) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.585,8.236,92.173) lpos=(-11.085,3.264,-1.847) lprev=(-11.084,3.366,-1.742) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2598,-0.8836,-0.2219) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2848,-1.1236,-0.3269) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2848,-3.3349,-1.6769) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0848,3.2644,-1.8271) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0848,3.2644,-2.5971) mvmt=(-0.0013,-0.1018,-0.8554) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0848,3.2644,-2.5971) out=(-11.0848,3.2644,-2.5700) delta=(0.0000,0.0000,0.0271) deltaMag=0.0271 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9638 dpPos=0.4529 dpMove=-0.7500 iDist=0.0362 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.585,8.236,91.423) lpos=(-11.085,3.264,-2.597) lprev=(-11.084,3.366,-1.742) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0848,3.2644,-2.5700) mvmt=(-0.0013,-0.1018,-0.8282) collide=False insertType=0 objState=0x303 winterp=0.9638 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.585,8.236,91.450) lpos=(-11.085,3.264,-2.570) lprev=(-11.084,3.366,-1.742) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2598,-0.8836,-0.9448) mvmt=(-0.0013,-0.1018,-0.8282) collide=False insertType=0 objState=0x303 winterp=0.9638 return=-1 +[push-back-disp] site=dispatch center=(-0.2848,-1.1236,-1.0498) mvmt=(-0.0013,-0.1018,-0.8282) collide=False insertType=0 objState=0x303 winterp=0.9638 return=-1 +[push-back] site=adjust_sphere in=(-0.2848,-1.1236,-1.0498) out=(-0.2848,-1.1236,-0.3269) delta=(0.0000,0.0000,0.7229) deltaMag=0.7229 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9638->-0.0000 dpPos=-0.0224 dpMove=-0.5024 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.0848,3.2644,-1.8471) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.585,8.236,92.173) lpos=(-11.085,3.264,-1.847) lprev=(-11.084,3.366,-1.742) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2598,-0.8836,-0.2219) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2848,-1.1236,-0.3269) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2848,-3.3349,-1.6769) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0848,3.2644,-1.8271) mvmt=(-0.0013,-0.1018,-0.1054) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0862,3.1605,-1.9546) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,8.339,92.065) lpos=(-11.086,3.161,-1.955) lprev=(-11.085,3.264,-1.847) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2612,-0.9875,-0.3294) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2862,-1.2275,-0.4344) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2862,-3.4388,-1.7844) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0862,3.1605,-1.9346) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0862,3.1605,-2.7046) mvmt=(-0.0013,-0.1039,-0.8575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0862,3.1605,-2.7046) out=(-11.0862,3.1605,-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.8205 dpPos=0.3454 dpMove=-0.7500 iDist=0.1795 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.586,8.339,91.315) lpos=(-11.086,3.161,-2.705) lprev=(-11.085,3.264,-1.847) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0862,3.1605,-2.5700) mvmt=(-0.0013,-0.1039,-0.7229) collide=False insertType=0 objState=0x303 winterp=0.8205 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,8.339,91.450) lpos=(-11.086,3.161,-2.570) lprev=(-11.085,3.264,-1.847) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2612,-0.9875,-0.9448) mvmt=(-0.0013,-0.1039,-0.7229) collide=False insertType=0 objState=0x303 winterp=0.8205 return=-1 +[push-back-disp] site=dispatch center=(-0.2862,-1.2275,-1.0498) mvmt=(-0.0013,-0.1039,-0.7229) collide=False insertType=0 objState=0x303 winterp=0.8205 return=-1 +[push-back] site=adjust_sphere in=(-0.2862,-1.2275,-1.0498) out=(-0.2862,-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.8205->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.0862,3.1605,-1.9546) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,8.339,92.065) lpos=(-11.086,3.161,-1.955) lprev=(-11.085,3.264,-1.847) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2612,-0.9875,-0.3294) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2862,-1.2275,-0.4344) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2862,-3.4388,-1.7844) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0862,3.1605,-1.9346) mvmt=(-0.0013,-0.1039,-0.1075) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0875,3.0574,-2.0613) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,8.443,91.959) lpos=(-11.087,3.057,-2.061) lprev=(-11.086,3.161,-1.955) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2625,-1.0907,-0.4361) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2875,-1.3307,-0.5411) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2875,-3.5419,-1.8911) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0875,3.0574,-2.0413) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0875,3.0574,-2.8113) mvmt=(-0.0013,-0.1032,-0.8567) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0875,3.0574,-2.8113) out=(-11.0875,3.0574,-2.5700) delta=(0.0000,0.0000,0.2413) deltaMag=0.2413 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6782 dpPos=0.2387 dpMove=-0.7500 iDist=0.3218 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.587,8.443,91.209) lpos=(-11.087,3.057,-2.811) lprev=(-11.086,3.161,-1.955) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0875,3.0574,-2.5700) mvmt=(-0.0013,-0.1032,-0.6154) collide=False insertType=0 objState=0x303 winterp=0.6782 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,8.443,91.450) lpos=(-11.087,3.057,-2.570) lprev=(-11.086,3.161,-1.955) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2625,-1.0907,-0.9448) mvmt=(-0.0013,-0.1032,-0.6154) collide=False insertType=0 objState=0x303 winterp=0.6782 return=-1 +[push-back-disp] site=dispatch center=(-0.2875,-1.3307,-1.0498) mvmt=(-0.0013,-0.1032,-0.6154) collide=False insertType=0 objState=0x303 winterp=0.6782 return=-1 +[push-back] site=adjust_sphere in=(-0.2875,-1.3307,-1.0498) out=(-0.2875,-1.3307,-0.5411) delta=(0.0000,0.0000,0.5087) deltaMag=0.5087 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6782->-0.0000 dpPos=0.1265 dpMove=-0.3535 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.0875,3.0574,-2.0613) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,8.443,91.959) lpos=(-11.087,3.057,-2.061) lprev=(-11.086,3.161,-1.955) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2625,-1.0907,-0.4361) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2875,-1.3307,-0.5411) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2875,-3.5419,-1.8911) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0875,3.0574,-2.0413) mvmt=(-0.0013,-0.1032,-0.1067) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0888,2.9554,-2.1668) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,8.545,91.853) lpos=(-11.089,2.955,-2.167) lprev=(-11.087,3.057,-2.061) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2638,-1.1926,-0.5416) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2888,-1.4326,-0.6466) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2888,-3.6439,-1.9966) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0888,2.9554,-2.1468) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0888,2.9554,-2.9168) mvmt=(-0.0013,-0.1020,-0.8555) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0888,2.9554,-2.9168) out=(-11.0888,2.9554,-2.5700) delta=(0.0000,0.0000,0.3468) deltaMag=0.3468 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.5376 dpPos=0.1332 dpMove=-0.7500 iDist=0.4624 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.589,8.545,91.103) lpos=(-11.089,2.955,-2.917) lprev=(-11.087,3.057,-2.061) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0888,2.9554,-2.5700) mvmt=(-0.0013,-0.1020,-0.5087) collide=False insertType=0 objState=0x303 winterp=0.5376 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,8.545,91.450) lpos=(-11.089,2.955,-2.570) lprev=(-11.087,3.057,-2.061) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2638,-1.1926,-0.9448) mvmt=(-0.0013,-0.1020,-0.5087) collide=False insertType=0 objState=0x303 winterp=0.5376 return=-1 +[push-back-disp] site=dispatch center=(-0.2888,-1.4326,-1.0498) mvmt=(-0.0013,-0.1020,-0.5087) collide=False insertType=0 objState=0x303 winterp=0.5376 return=-1 +[push-back] site=adjust_sphere in=(-0.2888,-1.4326,-1.0498) out=(-0.2888,-1.4326,-0.6466) delta=(0.0000,0.0000,0.4032) deltaMag=0.4032 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.5376->-0.0000 dpPos=0.1998 dpMove=-0.2802 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.0888,2.9554,-2.1668) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,8.545,91.853) lpos=(-11.089,2.955,-2.167) lprev=(-11.087,3.057,-2.061) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2638,-1.1926,-0.5416) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2888,-1.4326,-0.6466) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2888,-3.6439,-1.9966) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0888,2.9554,-2.1468) mvmt=(-0.0013,-0.1020,-0.1055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0901,2.8538,-2.2719) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.646,91.748) lpos=(-11.090,2.854,-2.272) lprev=(-11.089,2.955,-2.167) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2651,-1.2943,-0.6467) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2901,-1.5343,-0.7517) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0901,2.8538,-2.2519) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0901,2.8538,-3.0219) mvmt=(-0.0013,-0.1016,-0.8551) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0901,2.8538,-3.0219) out=(-11.0901,2.8538,-2.5700) delta=(0.0000,0.0000,0.4519) deltaMag=0.4519 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.3974 dpPos=0.0281 dpMove=-0.7500 iDist=0.6026 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.646,90.998) lpos=(-11.090,2.854,-3.022) lprev=(-11.089,2.955,-2.167) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0901,2.8538,-2.5700) mvmt=(-0.0013,-0.1016,-0.4032) collide=False insertType=0 objState=0x303 winterp=0.3974 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.646,91.450) lpos=(-11.090,2.854,-2.570) lprev=(-11.089,2.955,-2.167) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2651,-1.2943,-0.9448) mvmt=(-0.0013,-0.1016,-0.4032) collide=False insertType=0 objState=0x303 winterp=0.3974 return=-1 +[push-back-disp] site=dispatch center=(-0.2901,-1.5343,-1.0498) mvmt=(-0.0013,-0.1016,-0.4032) collide=False insertType=0 objState=0x303 winterp=0.3974 return=-1 +[push-back] site=adjust_sphere in=(-0.2901,-1.5343,-1.0498) out=(-0.2901,-1.5343,-0.7517) delta=(0.0000,0.0000,0.2981) deltaMag=0.2981 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.3974->-0.0000 dpPos=0.2728 dpMove=-0.2072 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.0901,2.8538,-2.2719) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.646,91.748) lpos=(-11.090,2.854,-2.272) lprev=(-11.089,2.955,-2.167) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2651,-1.2943,-0.6467) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2901,-1.5343,-0.7517) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0901,2.8538,-2.2519) mvmt=(-0.0013,-0.1016,-0.1051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0914,2.7514,-2.3779) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,8.749,91.642) lpos=(-11.091,2.751,-2.378) lprev=(-11.090,2.854,-2.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2664,-1.3967,-0.7527) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2914,-1.6367,-0.8577) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0914,2.7514,-2.3579) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0914,2.7514,-3.1279) mvmt=(-0.0013,-0.1024,-0.8559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0914,2.7514,-3.1279) out=(-11.0914,2.7514,-2.5700) delta=(0.0000,0.0000,0.5579) deltaMag=0.5579 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.2562 dpPos=-0.0779 dpMove=-0.7500 iDist=0.7438 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.591,8.749,90.892) lpos=(-11.091,2.751,-3.128) lprev=(-11.090,2.854,-2.272) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0914,2.7514,-2.5700) mvmt=(-0.0013,-0.1024,-0.2981) collide=False insertType=0 objState=0x303 winterp=0.2562 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,8.749,91.450) lpos=(-11.091,2.751,-2.570) lprev=(-11.090,2.854,-2.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2664,-1.3967,-0.9448) mvmt=(-0.0013,-0.1024,-0.2981) collide=False insertType=0 objState=0x303 winterp=0.2562 return=-1 +[push-back-disp] site=dispatch center=(-0.2914,-1.6367,-1.0498) mvmt=(-0.0013,-0.1024,-0.2981) collide=False insertType=0 objState=0x303 winterp=0.2562 return=-1 +[push-back] site=adjust_sphere in=(-0.2914,-1.6367,-1.0498) out=(-0.2914,-1.6367,-0.8577) delta=(0.0000,0.0000,0.1921) deltaMag=0.1921 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2562->0.0000 dpPos=0.3465 dpMove=-0.1335 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.0914,2.7514,-2.3779) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,8.749,91.642) lpos=(-11.091,2.751,-2.378) lprev=(-11.090,2.854,-2.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2664,-1.3967,-0.7527) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2914,-1.6367,-0.8577) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0914,2.7514,-2.3579) mvmt=(-0.0013,-0.1024,-0.1059) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0927,2.6527,-2.4799) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,8.847,91.540) lpos=(-11.093,2.653,-2.480) lprev=(-11.091,2.751,-2.378) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2677,-1.4953,-0.8547) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2927,-1.7353,-0.9597) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0927,2.6527,-2.4599) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0927,2.6527,-3.2299) mvmt=(-0.0013,-0.0987,-0.8521) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0927,2.6527,-3.2299) out=(-11.0927,2.6527,-2.5700) delta=(0.0000,0.0000,0.6599) deltaMag=0.6599 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1201 dpPos=-0.1799 dpMove=-0.7500 iDist=0.8799 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.593,8.847,90.790) lpos=(-11.093,2.653,-3.230) lprev=(-11.091,2.751,-2.378) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0927,2.6527,-2.5700) mvmt=(-0.0013,-0.0987,-0.1921) collide=False insertType=0 objState=0x303 winterp=0.1201 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,8.847,91.450) lpos=(-11.093,2.653,-2.570) lprev=(-11.091,2.751,-2.378) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2677,-1.4953,-0.9448) mvmt=(-0.0013,-0.0987,-0.1921) collide=False insertType=0 objState=0x303 winterp=0.1201 return=-1 +[push-back-disp] site=dispatch center=(-0.2927,-1.7353,-1.0498) mvmt=(-0.0013,-0.0987,-0.1921) collide=False insertType=0 objState=0x303 winterp=0.1201 return=-1 +[push-back] site=adjust_sphere in=(-0.2927,-1.7353,-1.0498) out=(-0.2927,-1.7353,-0.9597) delta=(0.0000,0.0000,0.0901) deltaMag=0.0901 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1201->0.0000 dpPos=0.4174 dpMove=-0.0626 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.0927,2.6527,-2.4799) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,8.847,91.540) lpos=(-11.093,2.653,-2.480) lprev=(-11.091,2.751,-2.378) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2677,-1.4953,-0.8547) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2927,-1.7353,-0.9597) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0927,2.6527,-2.4599) mvmt=(-0.0013,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0940,2.5531,-2.5829) mvmt=(-0.0013,-0.0996,-0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5531,-2.5829) mvmt=(-0.0013,-0.0996,-0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0940,2.5531,-2.5829) out=(-11.0940,2.5531,-2.5700) delta=(0.0000,0.0000,0.0129) deltaMag=0.0129 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9784 dpPos=0.4671 dpMove=-0.6000 iDist=0.0216 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.594,8.947,91.437) lpos=(-11.094,2.553,-2.583) lprev=(-11.093,2.653,-2.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0940,2.5531,-2.5700) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=0 objState=0x303 winterp=0.9784 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,8.947,91.450) lpos=(-11.094,2.553,-2.570) lprev=(-11.093,2.653,-2.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2690,-1.5949,-0.9448) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=0 objState=0x303 winterp=0.9784 return=-1 +[push-back-disp] site=dispatch center=(-0.2940,-1.8349,-1.0498) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=0 objState=0x303 winterp=0.9784 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5531,-2.5500) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=0 objState=0x303 winterp=0.9784 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5531,-2.5700) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=1 objState=0x303 winterp=0.9784 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,8.947,91.450) lpos=(-11.094,2.553,-2.570) lprev=(-11.093,2.653,-2.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2690,-1.5949,-0.9448) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=1 objState=0x303 winterp=0.9784 return=-1 +[push-back-disp] site=dispatch center=(-0.2940,-1.8349,-1.0498) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=1 objState=0x303 winterp=0.9784 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5531,-2.5500) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=1 objState=0x303 winterp=0.9784 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,8.947,91.437) lpos=(-11.094,2.553,-2.583) lprev=(-11.093,2.653,-2.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2690,-1.5949,-0.9448) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=0 objState=0x303 winterp=0.9784 return=-1 +[push-back-disp] site=dispatch center=(-0.2940,-1.8349,-1.0498) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=0 objState=0x303 winterp=0.9784 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5531,-2.5500) mvmt=(-0.0013,-0.0996,-0.0901) collide=False insertType=0 objState=0x303 winterp=0.9784 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0953,2.3428,-2.5700) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,9.157,91.450) lpos=(-11.095,2.343,-2.570) lprev=(-11.094,2.553,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2703,-1.8053,-0.9448) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2953,-2.0453,-1.0498) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0953,2.3428,-2.5500) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0953,2.3428,-3.3200) mvmt=(-0.0013,-0.2104,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0953,2.3428,-3.3200) out=(-11.0953,2.3428,-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.595,9.157,90.700) lpos=(-11.095,2.343,-3.320) lprev=(-11.094,2.553,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0953,2.3428,-2.5700) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,9.157,91.450) lpos=(-11.095,2.343,-2.570) lprev=(-11.094,2.553,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2703,-1.8053,-0.9448) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2953,-2.0453,-1.0498) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0953,2.3428,-2.5500) mvmt=(-0.0013,-0.2104,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0966,2.1250,-2.5700) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.597,9.375,91.450) lpos=(-11.097,2.125,-2.570) lprev=(-11.095,2.343,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2717,-2.0231,-0.9448) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2966,-2.2631,-1.0498) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0966,2.1250,-2.5500) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0966,2.1250,-3.3200) mvmt=(-0.0014,-0.2178,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0966,2.1250,-3.3200) out=(-11.0966,2.1250,-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.597,9.375,90.700) lpos=(-11.097,2.125,-3.320) lprev=(-11.095,2.343,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0966,2.1250,-2.5700) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.597,9.375,91.450) lpos=(-11.097,2.125,-2.570) lprev=(-11.095,2.343,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2717,-2.0231,-0.9448) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2966,-2.2631,-1.0498) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0966,2.1250,-2.5500) mvmt=(-0.0014,-0.2178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0940,2.5464,-2.5700) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,8.954,91.450) lpos=(-11.094,2.546,-2.570) lprev=(-11.097,2.125,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2690,-1.6017,-0.9448) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2940,-1.8417,-1.0498) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5464,-2.5500) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5464,-3.3200) mvmt=(0.0026,0.4214,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0940,2.5464,-3.3200) out=(-11.0940,2.5464,-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.594,8.954,90.700) lpos=(-11.094,2.546,-3.320) lprev=(-11.097,2.125,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0940,2.5464,-2.5700) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,8.954,91.450) lpos=(-11.094,2.546,-2.570) lprev=(-11.097,2.125,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2690,-1.6017,-0.9448) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2940,-1.8417,-1.0498) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0940,2.5464,-2.5500) mvmt=(0.0026,0.4214,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0915,2.9587,-2.5700) mvmt=(0.0026,0.4123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,8.541,91.450) lpos=(-11.091,2.959,-2.570) lprev=(-11.094,2.546,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2665,-1.1893,-0.9448) mvmt=(0.0026,0.4123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2915,-1.4293,-1.0498) mvmt=(0.0026,0.4123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0915,2.9587,-2.5700) mvmt=(0.0026,0.4123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,8.541,91.450) lpos=(-11.091,2.959,-2.570) lprev=(-11.094,2.546,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2665,-1.1893,-0.9448) mvmt=(0.0026,0.4123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2915,-1.4293,-1.0498) mvmt=(0.0026,0.4123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2915,-1.4293,-1.0498) out=(-0.2915,-1.4293,-0.6432) delta=(0.0000,0.0000,0.4066) deltaMag=0.4066 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3223 dpPos=0.1974 dpMove=-0.4170 iDist=0.6777 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.0915,2.9587,-2.1634) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=0 objState=0x303 winterp=0.3223 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,8.541,91.857) lpos=(-11.091,2.959,-2.163) lprev=(-11.094,2.546,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2665,-1.1893,-0.5382) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=0 objState=0x303 winterp=0.3223 return=-1 +[push-back-disp] site=dispatch center=(-0.2915,-1.4293,-0.6432) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=0 objState=0x303 winterp=0.3223 return=-1 +[push-back-disp] site=dispatch center=(-11.0915,2.9587,-2.1434) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=0 objState=0x303 winterp=0.3223 return=-1 +[push-back-disp] site=dispatch center=(-11.0915,2.9587,-2.1634) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=1 objState=0x303 winterp=0.3223 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,8.541,91.857) lpos=(-11.091,2.959,-2.163) lprev=(-11.094,2.546,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2665,-1.1893,-0.5382) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=1 objState=0x303 winterp=0.3223 return=-1 +[push-back-disp] site=dispatch center=(-0.2915,-1.4293,-0.6432) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=1 objState=0x303 winterp=0.3223 return=-1 +[push-back-disp] site=dispatch center=(-11.0915,2.9587,-2.1434) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=1 objState=0x303 winterp=0.3223 return=-1 +[push-back-disp] site=dispatch center=(-11.0915,2.9587,-2.1434) mvmt=(0.0026,0.4123,0.4066) collide=False insertType=0 objState=0x303 winterp=0.3223 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0889,3.1588,-1.9564) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,8.341,92.064) lpos=(-11.089,3.159,-1.956) lprev=(-11.091,2.959,-2.163) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2639,-0.9892,-0.3312) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2889,-1.2292,-0.4362) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2889,-3.4405,-1.7862) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0889,3.1588,-1.9364) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0889,3.1588,-2.7064) mvmt=(0.0026,0.2001,-0.5430) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0889,3.1588,-2.7064) out=(-11.0889,3.1588,-2.5700) delta=(0.0000,0.0000,0.1364) deltaMag=0.1364 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8182 dpPos=0.3436 dpMove=-0.7500 iDist=0.1818 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.589,8.341,91.314) lpos=(-11.089,3.159,-2.706) lprev=(-11.091,2.959,-2.163) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0889,3.1588,-2.5700) mvmt=(0.0026,0.2001,-0.4066) collide=False insertType=0 objState=0x303 winterp=0.8182 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,8.341,91.450) lpos=(-11.089,3.159,-2.570) lprev=(-11.091,2.959,-2.163) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2639,-0.9892,-0.9448) mvmt=(0.0026,0.2001,-0.4066) collide=False insertType=0 objState=0x303 winterp=0.8182 return=-1 +[push-back-disp] site=dispatch center=(-0.2889,-1.2292,-1.0498) mvmt=(0.0026,0.2001,-0.4066) collide=False insertType=0 objState=0x303 winterp=0.8182 return=-1 +[push-back] site=adjust_sphere in=(-0.2889,-1.2292,-1.0498) out=(-0.2889,-1.2292,-0.4362) delta=(0.0000,0.0000,0.6136) deltaMag=0.6136 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.8182->-0.0000 dpPos=0.0535 dpMove=-0.4265 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.0889,3.1588,-1.9564) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,8.341,92.064) lpos=(-11.089,3.159,-1.956) lprev=(-11.091,2.959,-2.163) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2639,-0.9892,-0.3312) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2889,-1.2292,-0.4362) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2889,-3.4405,-1.7862) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0889,3.1588,-1.9364) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0863,3.3627,-1.7455) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,8.137,92.274) lpos=(-11.086,3.363,-1.745) lprev=(-11.089,3.159,-1.956) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2613,-0.7854,-0.1203) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2863,-1.0254,-0.2253) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2863,-3.2366,-1.5753) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0863,3.3627,-1.7255) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0863,3.3627,-2.4955) mvmt=(0.0026,0.2038,-0.5391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,8.137,91.524) lpos=(-11.086,3.363,-2.495) lprev=(-11.089,3.159,-1.956) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2613,-0.7854,-0.8703) mvmt=(0.0026,0.2038,-0.5391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2863,-1.0254,-0.9753) mvmt=(0.0026,0.2038,-0.5391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2863,-1.0254,-0.9753) out=(-0.2863,-1.0254,-0.2253) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0863,3.3627,-1.7455) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,8.137,92.274) lpos=(-11.086,3.363,-1.745) lprev=(-11.089,3.159,-1.956) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2613,-0.7854,-0.1203) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2863,-1.0254,-0.2253) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2863,-3.2366,-1.5753) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0863,3.3627,-1.7255) mvmt=(0.0026,0.2038,0.2109) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0835,3.5769,-1.5239) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,7.923,92.496) lpos=(-11.084,3.577,-1.524) lprev=(-11.086,3.363,-1.745) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2585,-0.5712,0.1013) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-0.8112,-0.0037) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-3.0224,-1.3537) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0835,3.5769,-1.5039) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0835,3.5769,-2.2739) mvmt=(0.0027,0.2142,-0.5284) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,7.923,91.746) lpos=(-11.084,3.577,-2.274) lprev=(-11.086,3.363,-1.745) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2585,-0.5712,-0.6487) mvmt=(0.0027,0.2142,-0.5284) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-0.8112,-0.7537) mvmt=(0.0027,0.2142,-0.5284) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2835,-0.8112,-0.7537) out=(-0.2835,-0.8112,-0.0037) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0835,3.5769,-1.5239) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,7.923,92.496) lpos=(-11.084,3.577,-1.524) lprev=(-11.086,3.363,-1.745) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2585,-0.5712,0.1013) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-0.8112,-0.0037) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2835,-3.0224,-1.3537) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0835,3.5769,-1.5039) mvmt=(0.0027,0.2142,0.2216) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0809,3.7833,-1.3103) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.717,92.710) lpos=(-11.081,3.783,-1.310) lprev=(-11.084,3.577,-1.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2559,-0.3647,0.3149) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-0.6047,0.2099) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-2.8160,-1.1401) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0809,3.7833,-1.2903) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0809,3.7833,-2.0603) mvmt=(0.0027,0.2065,-0.5364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.717,91.960) lpos=(-11.081,3.783,-2.060) lprev=(-11.084,3.577,-1.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2559,-0.3647,-0.4351) mvmt=(0.0027,0.2065,-0.5364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-0.6047,-0.5401) mvmt=(0.0027,0.2065,-0.5364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2809,-0.6047,-0.5401) out=(-0.2809,-0.6047,0.2099) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0809,3.7833,-1.3103) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.717,92.710) lpos=(-11.081,3.783,-1.310) lprev=(-11.084,3.577,-1.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2559,-0.3647,0.3149) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-0.6047,0.2099) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2809,-2.8160,-1.1401) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0809,3.7833,-1.2903) mvmt=(0.0027,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0783,3.9880,-1.0986) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.512,92.921) lpos=(-11.078,3.988,-1.099) lprev=(-11.081,3.783,-1.310) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2533,-0.1600,0.5266) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-0.4000,0.4216) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-2.6113,-0.9284) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,3.9880,-1.0786) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,3.9880,-1.8486) mvmt=(0.0026,0.2047,-0.5382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.512,92.171) lpos=(-11.078,3.988,-1.849) lprev=(-11.081,3.783,-1.310) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2533,-0.1600,-0.2234) mvmt=(0.0026,0.2047,-0.5382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-0.4000,-0.3284) mvmt=(0.0026,0.2047,-0.5382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2783,-0.4000,-0.3284) out=(-0.2783,-0.4000,0.4216) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0783,3.9880,-1.0986) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.512,92.921) lpos=(-11.078,3.988,-1.099) lprev=(-11.081,3.783,-1.310) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2533,-0.1600,0.5266) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-0.4000,0.4216) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-2.6113,-0.9284) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,3.9880,-1.0786) mvmt=(0.0026,0.2047,0.2118) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0756,4.1923,-0.8872) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.308,93.133) lpos=(-11.076,4.192,-0.887) lprev=(-11.078,3.988,-1.099) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2506,0.0443,0.7380) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2756,-0.1957,0.6330) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2756,-2.4070,-0.7170) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0756,4.1923,-0.8672) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0756,4.1923,-1.6372) mvmt=(0.0026,0.2043,-0.5387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.308,92.383) lpos=(-11.076,4.192,-1.637) lprev=(-11.078,3.988,-1.099) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2506,0.0443,-0.0120) mvmt=(0.0026,0.2043,-0.5387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2756,-0.1957,-0.1170) mvmt=(0.0026,0.2043,-0.5387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2756,-0.1957,-0.1170) out=(-0.2756,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0756,4.1923,-0.8872) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.308,93.133) lpos=(-11.076,4.192,-0.887) lprev=(-11.078,3.988,-1.099) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2506,0.0443,0.7380) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2756,-0.1957,0.6330) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2756,-2.4070,-0.7170) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0756,4.1923,-0.8672) mvmt=(0.0026,0.2043,0.2113) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0730,4.3986,-0.6739) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.101,93.346) lpos=(-11.073,4.399,-0.674) lprev=(-11.076,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0730,4.3986,-0.6739) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2480,0.2505,0.9513) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,0.0105,0.8463) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,-2.2008,-0.5037) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0730,4.3986,-0.6539) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0730,4.3986,-0.6739) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.101,93.346) lpos=(-11.073,4.399,-0.674) lprev=(-11.076,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0730,4.3986,-0.6739) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2480,0.2505,0.9513) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,0.0105,0.8463) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,-2.2008,-0.5037) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0730,4.3986,-0.6539) mvmt=(0.0027,0.2062,0.2133) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0730,4.1923,-0.8872) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.308,93.133) lpos=(-11.073,4.192,-0.887) lprev=(-11.076,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2480,0.0443,0.7380) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,-0.1957,0.6330) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,-2.4070,-0.7170) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0730,4.1923,-0.8672) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0730,4.1923,-1.6372) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.308,92.383) lpos=(-11.073,4.192,-1.637) lprev=(-11.076,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2480,0.0443,-0.0120) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,-0.1957,-0.1170) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2730,-0.1957,-0.1170) out=(-0.2730,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0730,4.1923,-0.8872) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,7.308,93.133) lpos=(-11.073,4.192,-0.887) lprev=(-11.076,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2480,0.0443,0.7380) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,-0.1957,0.6330) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2730,-2.4070,-0.7170) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0730,4.1923,-0.8672) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0704,4.3927,-0.6799) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.107,93.340) lpos=(-11.070,4.393,-0.680) lprev=(-11.073,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0704,4.3927,-0.6799) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2454,0.2447,0.9453) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,0.0047,0.8403) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,-2.2066,-0.5097) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0704,4.3927,-0.6599) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0704,4.3927,-0.6799) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.107,93.340) lpos=(-11.070,4.393,-0.680) lprev=(-11.073,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0704,4.3927,-0.6799) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2454,0.2447,0.9453) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,0.0047,0.8403) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,-2.2066,-0.5097) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0704,4.3927,-0.6599) mvmt=(0.0026,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0704,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.308,93.133) lpos=(-11.070,4.192,-0.887) lprev=(-11.073,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2454,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0704,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0704,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.308,92.383) lpos=(-11.070,4.192,-1.637) lprev=(-11.073,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2454,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2704,-0.1957,-0.1170) out=(-0.2704,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0704,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.308,93.133) lpos=(-11.070,4.192,-0.887) lprev=(-11.073,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2454,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2704,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0704,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0678,4.3926,-0.6801) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.568,7.107,93.340) lpos=(-11.068,4.393,-0.680) lprev=(-11.070,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0678,4.3926,-0.6801) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2428,0.2445,0.9451) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,0.0045,0.8401) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,-2.2067,-0.5099) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0678,4.3926,-0.6601) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0678,4.3926,-0.6801) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.568,7.107,93.340) lpos=(-11.068,4.393,-0.680) lprev=(-11.070,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0678,4.3926,-0.6801) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2428,0.2445,0.9451) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,0.0045,0.8401) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,-2.2067,-0.5099) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0678,4.3926,-0.6601) mvmt=(0.0026,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0678,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.568,7.308,93.133) lpos=(-11.068,4.192,-0.887) lprev=(-11.070,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2428,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0678,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0678,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.568,7.308,92.383) lpos=(-11.068,4.192,-1.637) lprev=(-11.070,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2428,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2678,-0.1957,-0.1170) out=(-0.2678,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0678,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.568,7.308,93.133) lpos=(-11.068,4.192,-0.887) lprev=(-11.070,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2428,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2678,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0678,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0652,4.3963,-0.6762) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.104,93.344) lpos=(-11.065,4.396,-0.676) lprev=(-11.068,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0652,4.3963,-0.6762) mvmt=(0.0026,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.2402,0.2483,0.9490) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,0.0083,0.8440) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,-2.2030,-0.5060) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0652,4.3963,-0.6562) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0652,4.3963,-0.6762) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.104,93.344) lpos=(-11.065,4.396,-0.676) lprev=(-11.068,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0652,4.3963,-0.6762) mvmt=(0.0026,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.2402,0.2483,0.9490) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,0.0083,0.8440) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,-2.2030,-0.5060) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0652,4.3963,-0.6562) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0652,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.308,93.133) lpos=(-11.065,4.192,-0.887) lprev=(-11.068,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2402,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0652,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0652,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.308,92.383) lpos=(-11.065,4.192,-1.637) lprev=(-11.068,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2402,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2652,-0.1957,-0.1170) out=(-0.2652,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0652,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.308,93.133) lpos=(-11.065,4.192,-0.887) lprev=(-11.068,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2402,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2652,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0652,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0626,4.3939,-0.6787) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,7.106,93.341) lpos=(-11.063,4.394,-0.679) lprev=(-11.065,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0626,4.3939,-0.6787) mvmt=(0.0026,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=(-1.2376,0.2459,0.9465) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,0.0059,0.8415) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,-2.2054,-0.5085) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0626,4.3939,-0.6587) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0626,4.3939,-0.6787) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,7.106,93.341) lpos=(-11.063,4.394,-0.679) lprev=(-11.065,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0626,4.3939,-0.6787) mvmt=(0.0026,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=(-1.2376,0.2459,0.9465) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,0.0059,0.8415) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,-2.2054,-0.5085) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0626,4.3939,-0.6587) mvmt=(0.0026,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0626,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,7.308,93.133) lpos=(-11.063,4.192,-0.887) lprev=(-11.065,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2376,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0626,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0626,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,7.308,92.383) lpos=(-11.063,4.192,-1.637) lprev=(-11.065,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2376,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2626,-0.1957,-0.1170) out=(-0.2626,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0626,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,7.308,93.133) lpos=(-11.063,4.192,-0.887) lprev=(-11.065,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2376,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2626,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0626,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0601,4.3902,-0.6825) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.110,93.337) lpos=(-11.060,4.390,-0.683) lprev=(-11.063,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0601,4.3902,-0.6825) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2351,0.2422,0.9427) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,0.0022,0.8377) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-2.2091,-0.5123) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,4.3902,-0.6625) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,4.3902,-0.6825) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.110,93.337) lpos=(-11.060,4.390,-0.683) lprev=(-11.063,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0601,4.3902,-0.6825) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2351,0.2422,0.9427) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,0.0022,0.8377) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-2.2091,-0.5123) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,4.3902,-0.6625) mvmt=(0.0025,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.308,93.133) lpos=(-11.060,4.192,-0.887) lprev=(-11.063,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2351,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,4.1923,-1.6372) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.308,92.383) lpos=(-11.060,4.192,-1.637) lprev=(-11.063,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2351,0.0443,-0.0120) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-0.1957,-0.1170) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2601,-0.1957,-0.1170) out=(-0.2601,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0601,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.308,93.133) lpos=(-11.060,4.192,-0.887) lprev=(-11.063,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2351,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0575,4.3909,-0.6818) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.558,7.109,93.338) lpos=(-11.058,4.391,-0.682) lprev=(-11.060,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0575,4.3909,-0.6818) mvmt=(0.0025,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=(-1.2325,0.2429,0.9434) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,0.0029,0.8384) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,-2.2084,-0.5116) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0575,4.3909,-0.6618) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0575,4.3909,-0.6818) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.558,7.109,93.338) lpos=(-11.058,4.391,-0.682) lprev=(-11.060,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0575,4.3909,-0.6818) mvmt=(0.0025,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=(-1.2325,0.2429,0.9434) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,0.0029,0.8384) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,-2.2084,-0.5116) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0575,4.3909,-0.6618) mvmt=(0.0025,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0575,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.558,7.308,93.133) lpos=(-11.058,4.192,-0.887) lprev=(-11.060,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2325,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0575,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0575,4.1923,-1.6372) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.558,7.308,92.383) lpos=(-11.058,4.192,-1.637) lprev=(-11.060,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2325,0.0443,-0.0120) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,-0.1957,-0.1170) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2575,-0.1957,-0.1170) out=(-0.2575,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0575,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.558,7.308,93.133) lpos=(-11.058,4.192,-0.887) lprev=(-11.060,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2325,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2575,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0575,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0549,4.3924,-0.6802) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.108,93.340) lpos=(-11.055,4.392,-0.680) lprev=(-11.058,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0549,4.3924,-0.6802) mvmt=(0.0026,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.2299,0.2444,0.9450) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,0.0044,0.8400) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-2.2069,-0.5100) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,4.3924,-0.6602) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,4.3924,-0.6802) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.108,93.340) lpos=(-11.055,4.392,-0.680) lprev=(-11.058,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0549,4.3924,-0.6802) mvmt=(0.0026,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.2299,0.2444,0.9450) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,0.0044,0.8400) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-2.2069,-0.5100) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,4.3924,-0.6602) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.308,93.133) lpos=(-11.055,4.192,-0.887) lprev=(-11.058,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2299,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.308,92.383) lpos=(-11.055,4.192,-1.637) lprev=(-11.058,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2299,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2549,-0.1957,-0.1170) out=(-0.2549,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0549,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.308,93.133) lpos=(-11.055,4.192,-0.887) lprev=(-11.058,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2299,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0524,4.3923,-0.6803) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.108,93.340) lpos=(-11.052,4.392,-0.680) lprev=(-11.055,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0524,4.3923,-0.6803) mvmt=(0.0026,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=(-1.2274,0.2443,0.9449) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,0.0043,0.8399) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,-2.2070,-0.5101) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0524,4.3923,-0.6603) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0524,4.3923,-0.6803) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.108,93.340) lpos=(-11.052,4.392,-0.680) lprev=(-11.055,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0524,4.3923,-0.6803) mvmt=(0.0026,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=(-1.2274,0.2443,0.9449) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,0.0043,0.8399) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,-2.2070,-0.5101) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0524,4.3923,-0.6603) mvmt=(0.0026,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0524,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.308,93.133) lpos=(-11.052,4.192,-0.887) lprev=(-11.055,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2274,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0524,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0524,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.308,92.383) lpos=(-11.052,4.192,-1.637) lprev=(-11.055,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2274,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2524,-0.1957,-0.1170) out=(-0.2524,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0524,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.308,93.133) lpos=(-11.052,4.192,-0.887) lprev=(-11.055,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2274,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2524,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0524,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0498,4.3925,-0.6802) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.550,7.108,93.340) lpos=(-11.050,4.392,-0.680) lprev=(-11.052,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0498,4.3925,-0.6802) mvmt=(0.0026,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.2248,0.2444,0.9450) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,0.0044,0.8400) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,-2.2069,-0.5100) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0498,4.3925,-0.6602) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0498,4.3925,-0.6802) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.550,7.108,93.340) lpos=(-11.050,4.392,-0.680) lprev=(-11.052,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0498,4.3925,-0.6802) mvmt=(0.0026,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.2248,0.2444,0.9450) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,0.0044,0.8400) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,-2.2069,-0.5100) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0498,4.3925,-0.6602) mvmt=(0.0026,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0498,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.550,7.308,93.133) lpos=(-11.050,4.192,-0.887) lprev=(-11.052,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2248,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0498,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0498,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.550,7.308,92.383) lpos=(-11.050,4.192,-1.637) lprev=(-11.052,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2248,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2498,-0.1957,-0.1170) out=(-0.2498,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0498,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.550,7.308,93.133) lpos=(-11.050,4.192,-0.887) lprev=(-11.052,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2248,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2498,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0498,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0470,4.4069,-0.6652) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.547,7.093,93.355) lpos=(-11.047,4.407,-0.665) lprev=(-11.050,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0470,4.4069,-0.6652) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2220,0.2589,0.9600) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2470,0.0189,0.8550) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2470,-2.1924,-0.4950) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0470,4.4069,-0.6452) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0470,4.4069,-0.6652) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.547,7.093,93.355) lpos=(-11.047,4.407,-0.665) lprev=(-11.050,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0470,4.4069,-0.6652) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2220,0.2589,0.9600) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2470,0.0189,0.8550) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2470,-2.1924,-0.4950) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0470,4.4069,-0.6452) mvmt=(0.0028,0.2146,0.2220) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0470,4.1923,-0.8872) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.547,7.308,93.133) lpos=(-11.047,4.192,-0.887) lprev=(-11.050,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2220,0.0443,0.7380) 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.2470,-0.1957,0.6330) 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.2470,-2.4070,-0.7170) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0470,4.1923,-0.8672) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0470,4.1923,-1.6372) mvmt=(0.0028,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.547,7.308,92.383) lpos=(-11.047,4.192,-1.637) lprev=(-11.050,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2220,0.0443,-0.0120) 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.2470,-0.1957,-0.1170) 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.2470,-0.1957,-0.1170) out=(-0.2470,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0470,4.1923,-0.8872) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.547,7.308,93.133) lpos=(-11.047,4.192,-0.887) lprev=(-11.050,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2220,0.0443,0.7380) 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.2470,-0.1957,0.6330) 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.2470,-2.4070,-0.7170) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0470,4.1923,-0.8672) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0445,4.3882,-0.6846) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.112,93.335) lpos=(-11.045,4.388,-0.685) lprev=(-11.047,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0445,4.3882,-0.6846) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2195,0.2401,0.9406) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,0.0001,0.8356) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,-2.2111,-0.5144) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0445,4.3882,-0.6646) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0445,4.3882,-0.6846) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.112,93.335) lpos=(-11.045,4.388,-0.685) lprev=(-11.047,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0445,4.3882,-0.6846) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2195,0.2401,0.9406) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,0.0001,0.8356) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,-2.2111,-0.5144) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0445,4.3882,-0.6646) mvmt=(0.0025,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0445,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.308,93.133) lpos=(-11.045,4.192,-0.887) lprev=(-11.047,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2195,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0445,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0445,4.1923,-1.6372) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.308,92.383) lpos=(-11.045,4.192,-1.637) lprev=(-11.047,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2195,0.0443,-0.0120) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,-0.1957,-0.1170) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2445,-0.1957,-0.1170) out=(-0.2445,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0445,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.308,93.133) lpos=(-11.045,4.192,-0.887) lprev=(-11.047,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2195,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2445,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0445,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0418,4.4047,-0.6675) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.095,93.353) lpos=(-11.042,4.405,-0.667) lprev=(-11.045,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0418,4.4047,-0.6675) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2168,0.2567,0.9577) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,0.0167,0.8527) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,-2.1946,-0.4973) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0418,4.4047,-0.6475) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0418,4.4047,-0.6675) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.095,93.353) lpos=(-11.042,4.405,-0.667) lprev=(-11.045,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0418,4.4047,-0.6675) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2168,0.2567,0.9577) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,0.0167,0.8527) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,-2.1946,-0.4973) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0418,4.4047,-0.6475) mvmt=(0.0027,0.2124,0.2197) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0418,4.1923,-0.8872) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.308,93.133) lpos=(-11.042,4.192,-0.887) lprev=(-11.045,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2168,0.0443,0.7380) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,-0.1957,0.6330) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,-2.4070,-0.7170) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0418,4.1923,-0.8672) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0418,4.1923,-1.6372) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.308,92.383) lpos=(-11.042,4.192,-1.637) lprev=(-11.045,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2168,0.0443,-0.0120) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,-0.1957,-0.1170) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2418,-0.1957,-0.1170) out=(-0.2418,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0418,4.1923,-0.8872) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.308,93.133) lpos=(-11.042,4.192,-0.887) lprev=(-11.045,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2168,0.0443,0.7380) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,-0.1957,0.6330) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2418,-2.4070,-0.7170) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0418,4.1923,-0.8672) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0393,4.3839,-0.6890) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.116,93.331) lpos=(-11.039,4.384,-0.689) lprev=(-11.042,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0393,4.3839,-0.6890) mvmt=(0.0025,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.2143,0.2359,0.9362) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-0.0041,0.8312) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-2.2154,-0.5188) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0393,4.3839,-0.6690) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0393,4.3839,-0.6890) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.116,93.331) lpos=(-11.039,4.384,-0.689) lprev=(-11.042,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0393,4.3839,-0.6890) mvmt=(0.0025,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.2143,0.2359,0.9362) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-0.0041,0.8312) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-2.2154,-0.5188) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0393,4.3839,-0.6690) mvmt=(0.0025,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0393,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.308,93.133) lpos=(-11.039,4.192,-0.887) lprev=(-11.042,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2143,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0393,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0393,4.1923,-1.6372) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.308,92.383) lpos=(-11.039,4.192,-1.637) lprev=(-11.042,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2143,0.0443,-0.0120) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-0.1957,-0.1170) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2393,-0.1957,-0.1170) out=(-0.2393,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0393,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.308,93.133) lpos=(-11.039,4.192,-0.887) lprev=(-11.042,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2143,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2393,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0393,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0367,4.4013,-0.6710) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.537,7.099,93.349) lpos=(-11.037,4.401,-0.671) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0367,4.4013,-0.6710) mvmt=(0.0027,0.2090,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.2117,0.2533,0.9542) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,0.0133,0.8492) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,-2.1980,-0.5008) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0367,4.4013,-0.6510) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0367,4.4013,-0.6710) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.537,7.099,93.349) lpos=(-11.037,4.401,-0.671) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0367,4.4013,-0.6710) mvmt=(0.0027,0.2090,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.2117,0.2533,0.9542) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,0.0133,0.8492) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,-2.1980,-0.5008) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0367,4.4013,-0.6510) mvmt=(0.0027,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0367,4.1923,-0.8872) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.537,7.308,93.133) lpos=(-11.037,4.192,-0.887) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2117,0.0443,0.7380) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,-0.1957,0.6330) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,-2.4070,-0.7170) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0367,4.1923,-0.8672) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0367,4.1923,-1.6372) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.537,7.308,92.383) lpos=(-11.037,4.192,-1.637) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2117,0.0443,-0.0120) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,-0.1957,-0.1170) mvmt=(0.0027,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2366,-0.1957,-0.1170) out=(-0.2366,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0367,4.1923,-0.8872) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.537,7.308,93.133) lpos=(-11.037,4.192,-0.887) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2117,0.0443,0.7380) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,-0.1957,0.6330) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2366,-2.4070,-0.7170) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0367,4.1923,-0.8672) mvmt=(0.0027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0340,4.3973,-0.6752) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.103,93.345) lpos=(-11.034,4.397,-0.675) lprev=(-11.037,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0340,4.3973,-0.6752) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2090,0.2492,0.9500) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,0.0092,0.8450) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,-2.2020,-0.5050) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0340,4.3973,-0.6552) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0340,4.3973,-0.6752) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.103,93.345) lpos=(-11.034,4.397,-0.675) lprev=(-11.037,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0340,4.3973,-0.6752) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2090,0.2492,0.9500) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,0.0092,0.8450) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,-2.2020,-0.5050) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0340,4.3973,-0.6552) mvmt=(0.0026,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0340,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.308,93.133) lpos=(-11.034,4.192,-0.887) lprev=(-11.037,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2090,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0340,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0340,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.308,92.383) lpos=(-11.034,4.192,-1.637) lprev=(-11.037,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2090,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2340,-0.1957,-0.1170) out=(-0.2340,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0340,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.308,93.133) lpos=(-11.034,4.192,-0.887) lprev=(-11.037,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2090,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2340,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0340,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0314,4.3944,-0.6781) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.531,7.106,93.342) lpos=(-11.031,4.394,-0.678) lprev=(-11.034,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0314,4.3944,-0.6781) mvmt=(0.0026,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.2064,0.2464,0.9471) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,0.0064,0.8421) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,-2.2049,-0.5079) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0314,4.3944,-0.6581) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0314,4.3944,-0.6781) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.531,7.106,93.342) lpos=(-11.031,4.394,-0.678) lprev=(-11.034,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0314,4.3944,-0.6781) mvmt=(0.0026,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.2064,0.2464,0.9471) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,0.0064,0.8421) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,-2.2049,-0.5079) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0314,4.3944,-0.6581) mvmt=(0.0026,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0314,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.531,7.308,93.133) lpos=(-11.031,4.192,-0.887) lprev=(-11.034,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2064,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0314,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0314,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.531,7.308,92.383) lpos=(-11.031,4.192,-1.637) lprev=(-11.034,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2064,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2314,-0.1957,-0.1170) out=(-0.2314,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0314,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.531,7.308,93.133) lpos=(-11.031,4.192,-0.887) lprev=(-11.034,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2064,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0314,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0288,4.3935,-0.6791) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.107,93.341) lpos=(-11.029,4.393,-0.679) lprev=(-11.031,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0288,4.3935,-0.6791) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2038,0.2454,0.9461) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,0.0054,0.8411) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.2058,-0.5089) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.3935,-0.6591) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.3935,-0.6791) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.107,93.341) lpos=(-11.029,4.393,-0.679) lprev=(-11.031,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0288,4.3935,-0.6791) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2038,0.2454,0.9461) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,0.0054,0.8411) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.2058,-0.5089) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.3935,-0.6591) mvmt=(0.0026,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.308,93.133) lpos=(-11.029,4.192,-0.887) lprev=(-11.031,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2038,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.308,92.383) lpos=(-11.029,4.192,-1.637) lprev=(-11.031,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2038,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2288,-0.1957,-0.1170) out=(-0.2288,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0288,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.529,7.308,93.133) lpos=(-11.029,4.192,-0.887) lprev=(-11.031,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2038,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2288,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0288,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0262,4.3963,-0.6762) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.104,93.344) lpos=(-11.026,4.396,-0.676) lprev=(-11.029,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0262,4.3963,-0.6762) mvmt=(0.0026,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.2012,0.2482,0.9490) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,0.0082,0.8440) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.2030,-0.5060) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.3963,-0.6562) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.3963,-0.6762) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.104,93.344) lpos=(-11.026,4.396,-0.676) lprev=(-11.029,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0262,4.3963,-0.6762) mvmt=(0.0026,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.2012,0.2482,0.9490) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,0.0082,0.8440) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.2030,-0.5060) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.3963,-0.6562) mvmt=(0.0026,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.308,93.133) lpos=(-11.026,4.192,-0.887) lprev=(-11.029,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2012,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.308,92.383) lpos=(-11.026,4.192,-1.637) lprev=(-11.029,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2012,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2262,-0.1957,-0.1170) out=(-0.2262,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0262,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.308,93.133) lpos=(-11.026,4.192,-0.887) lprev=(-11.029,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2012,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0237,4.3874,-0.6854) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.113,93.335) lpos=(-11.024,4.387,-0.685) lprev=(-11.026,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0237,4.3874,-0.6854) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1987,0.2394,0.9398) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-0.0006,0.8348) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-2.2119,-0.5152) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0237,4.3874,-0.6654) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0237,4.3874,-0.6854) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.113,93.335) lpos=(-11.024,4.387,-0.685) lprev=(-11.026,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0237,4.3874,-0.6854) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1987,0.2394,0.9398) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-0.0006,0.8348) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-2.2119,-0.5152) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0237,4.3874,-0.6654) mvmt=(0.0025,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0237,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.308,93.133) lpos=(-11.024,4.192,-0.887) lprev=(-11.026,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1987,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0237,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0237,4.1923,-1.6372) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.308,92.383) lpos=(-11.024,4.192,-1.637) lprev=(-11.026,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1987,0.0443,-0.0120) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-0.1957,-0.1170) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2237,-0.1957,-0.1170) out=(-0.2237,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0237,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.308,93.133) lpos=(-11.024,4.192,-0.887) lprev=(-11.026,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1987,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2237,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0237,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0212,4.3898,-0.6829) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.110,93.337) lpos=(-11.021,4.390,-0.683) lprev=(-11.024,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0212,4.3898,-0.6829) mvmt=(0.0025,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.1962,0.2418,0.9423) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,0.0018,0.8373) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,-2.2095,-0.5127) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0212,4.3898,-0.6629) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0212,4.3898,-0.6829) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.110,93.337) lpos=(-11.021,4.390,-0.683) lprev=(-11.024,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0212,4.3898,-0.6829) mvmt=(0.0025,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.1962,0.2418,0.9423) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,0.0018,0.8373) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,-2.2095,-0.5127) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0212,4.3898,-0.6629) mvmt=(0.0025,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0212,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.308,93.133) lpos=(-11.021,4.192,-0.887) lprev=(-11.024,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1962,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0212,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0212,4.1923,-1.6372) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.308,92.383) lpos=(-11.021,4.192,-1.637) lprev=(-11.024,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1962,0.0443,-0.0120) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,-0.1957,-0.1170) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2212,-0.1957,-0.1170) out=(-0.2212,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0212,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.308,93.133) lpos=(-11.021,4.192,-0.887) lprev=(-11.024,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1962,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2212,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0212,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0186,4.3940,-0.6786) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.519,7.106,93.341) lpos=(-11.019,4.394,-0.679) lprev=(-11.021,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0186,4.3940,-0.6786) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1936,0.2459,0.9466) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,0.0059,0.8416) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,-2.2053,-0.5084) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0186,4.3940,-0.6586) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0186,4.3940,-0.6786) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.519,7.106,93.341) lpos=(-11.019,4.394,-0.679) lprev=(-11.021,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0186,4.3940,-0.6786) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1936,0.2459,0.9466) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,0.0059,0.8416) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,-2.2053,-0.5084) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0186,4.3940,-0.6586) mvmt=(0.0026,0.2016,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0186,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.519,7.308,93.133) lpos=(-11.019,4.192,-0.887) lprev=(-11.021,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1936,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0186,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0186,4.1923,-1.6372) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.519,7.308,92.383) lpos=(-11.019,4.192,-1.637) lprev=(-11.021,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1936,0.0443,-0.0120) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,-0.1957,-0.1170) mvmt=(0.0026,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2186,-0.1957,-0.1170) out=(-0.2186,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0186,4.1923,-0.8872) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.519,7.308,93.133) lpos=(-11.019,4.192,-0.887) lprev=(-11.021,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1936,0.0443,0.7380) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,-0.1957,0.6330) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2186,-2.4070,-0.7170) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0186,4.1923,-0.8672) mvmt=(0.0026,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0161,4.3885,-0.6842) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.111,93.336) lpos=(-11.016,4.389,-0.684) lprev=(-11.019,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0161,4.3885,-0.6842) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1911,0.2405,0.9409) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,0.0005,0.8360) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,-2.2108,-0.5141) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0161,4.3885,-0.6643) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0161,4.3885,-0.6842) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.111,93.336) lpos=(-11.016,4.389,-0.684) lprev=(-11.019,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0161,4.3885,-0.6842) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1911,0.2405,0.9409) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,0.0005,0.8360) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,-2.2108,-0.5141) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0161,4.3885,-0.6643) mvmt=(0.0025,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0161,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.308,93.133) lpos=(-11.016,4.192,-0.887) lprev=(-11.019,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1911,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0161,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0161,4.1923,-1.6372) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.308,92.383) lpos=(-11.016,4.192,-1.637) lprev=(-11.019,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1911,0.0443,-0.0120) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,-0.1957,-0.1170) mvmt=(0.0025,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2161,-0.1957,-0.1170) out=(-0.2161,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0161,4.1923,-0.8872) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.516,7.308,93.133) lpos=(-11.016,4.192,-0.887) lprev=(-11.019,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1911,0.0443,0.7380) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,-0.1957,0.6330) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2161,-2.4070,-0.7170) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0161,4.1923,-0.8672) mvmt=(0.0025,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9989,4.3875,-0.6853) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.112,93.335) lpos=(-10.999,4.388,-0.685) lprev=(-11.016,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9989,4.3875,-0.6853) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1739,0.2395,0.9399) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-0.0005,0.8349) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-2.2118,-0.5151) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,4.3875,-0.6653) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,4.3875,-0.6853) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.112,93.335) lpos=(-10.999,4.388,-0.685) lprev=(-11.016,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9989,4.3875,-0.6853) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1739,0.2395,0.9399) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-0.0005,0.8349) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-2.2118,-0.5151) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,4.3875,-0.6653) mvmt=(0.0172,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,4.1923,-0.8872) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.308,93.133) lpos=(-10.999,4.192,-0.887) lprev=(-11.016,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1739,0.0443,0.7380) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-0.1957,0.6330) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-2.4070,-0.7170) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,4.1923,-0.8672) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,4.1923,-1.6372) mvmt=(0.0172,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.308,92.383) lpos=(-10.999,4.192,-1.637) lprev=(-11.016,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1739,0.0443,-0.0120) mvmt=(0.0172,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-0.1957,-0.1170) mvmt=(0.0172,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1989,-0.1957,-0.1170) out=(-0.1989,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9989,4.1923,-0.8872) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.308,93.133) lpos=(-10.999,4.192,-0.887) lprev=(-11.016,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1739,0.0443,0.7380) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-0.1957,0.6330) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-2.4070,-0.7170) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,4.1923,-0.8672) mvmt=(0.0172,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9496,4.3854,-0.6875) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.450,7.115,93.333) lpos=(-10.950,4.385,-0.687) lprev=(-10.999,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9496,4.3854,-0.6875) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1246,0.2374,0.9377) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-0.0026,0.8327) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-2.2139,-0.5173) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9496,4.3854,-0.6675) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9496,4.3854,-0.6875) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.450,7.115,93.333) lpos=(-10.950,4.385,-0.687) lprev=(-10.999,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9496,4.3854,-0.6875) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1246,0.2374,0.9377) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-0.0026,0.8327) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-2.2139,-0.5173) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9496,4.3854,-0.6675) mvmt=(0.0493,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9496,4.1923,-0.8872) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.450,7.308,93.133) lpos=(-10.950,4.192,-0.887) lprev=(-10.999,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1246,0.0443,0.7380) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-0.1957,0.6330) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-2.4070,-0.7170) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9496,4.1923,-0.8672) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9496,4.1923,-1.6372) mvmt=(0.0493,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.450,7.308,92.383) lpos=(-10.950,4.192,-1.637) lprev=(-10.999,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1246,0.0443,-0.0120) mvmt=(0.0493,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-0.1957,-0.1170) mvmt=(0.0493,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1496,-0.1957,-0.1170) out=(-0.1496,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9496,4.1923,-0.8872) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.450,7.308,93.133) lpos=(-10.950,4.192,-0.887) lprev=(-10.999,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1246,0.0443,0.7380) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-0.1957,0.6330) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1496,-2.4070,-0.7170) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9496,4.1923,-0.8672) mvmt=(0.0493,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8671,4.3853,-0.6876) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.367,7.115,93.332) lpos=(-10.867,4.385,-0.688) lprev=(-10.950,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8671,4.3853,-0.6876) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0421,0.2373,0.9376) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-0.0027,0.8326) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-2.2140,-0.5174) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8671,4.3853,-0.6676) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8671,4.3853,-0.6876) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.367,7.115,93.332) lpos=(-10.867,4.385,-0.688) lprev=(-10.950,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8671,4.3853,-0.6876) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0421,0.2373,0.9376) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-0.0027,0.8326) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-2.2140,-0.5174) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8671,4.3853,-0.6676) mvmt=(0.0825,0.1930,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8671,4.1923,-0.8872) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.367,7.308,93.133) lpos=(-10.867,4.192,-0.887) lprev=(-10.950,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0421,0.0443,0.7380) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-0.1957,0.6330) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-2.4070,-0.7170) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8671,4.1923,-0.8672) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8671,4.1923,-1.6372) mvmt=(0.0825,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.367,7.308,92.383) lpos=(-10.867,4.192,-1.637) lprev=(-10.950,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0421,0.0443,-0.0120) mvmt=(0.0825,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-0.1957,-0.1170) mvmt=(0.0825,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0671,-0.1957,-0.1170) out=(-0.0671,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8671,4.1923,-0.8872) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.367,7.308,93.133) lpos=(-10.867,4.192,-0.887) lprev=(-10.950,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0421,0.0443,0.7380) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-0.1957,0.6330) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0671,-2.4070,-0.7170) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8671,4.1923,-0.8672) mvmt=(0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7563,4.3766,-0.6966) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.256,7.123,93.323) lpos=(-10.756,4.377,-0.697) lprev=(-10.867,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7563,4.3766,-0.6966) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9313,0.2286,0.9286) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-0.0114,0.8236) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-2.2227,-0.5264) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7563,4.3766,-0.6766) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7563,4.3766,-0.6966) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.256,7.123,93.323) lpos=(-10.756,4.377,-0.697) lprev=(-10.867,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7563,4.3766,-0.6966) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9313,0.2286,0.9286) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-0.0114,0.8236) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-2.2227,-0.5264) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7563,4.3766,-0.6766) mvmt=(0.1108,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7563,4.1923,-0.8872) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.256,7.308,93.133) lpos=(-10.756,4.192,-0.887) lprev=(-10.867,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9313,0.0443,0.7380) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-0.1957,0.6330) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-2.4070,-0.7170) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7563,4.1923,-0.8672) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7563,4.1923,-1.6372) mvmt=(0.1108,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.256,7.308,92.383) lpos=(-10.756,4.192,-1.637) lprev=(-10.867,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9313,0.0443,-0.0120) mvmt=(0.1108,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-0.1957,-0.1170) mvmt=(0.1108,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0437,-0.1957,-0.1170) out=(0.0437,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7563,4.1923,-0.8872) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.256,7.308,93.133) lpos=(-10.756,4.192,-0.887) lprev=(-10.867,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9313,0.0443,0.7380) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-0.1957,0.6330) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0437,-2.4070,-0.7170) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7563,4.1923,-0.8672) mvmt=(0.1108,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6345,4.3817,-0.6913) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.135,7.118,93.329) lpos=(-10.635,4.382,-0.691) lprev=(-10.756,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6345,4.3817,-0.6913) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8095,0.2337,0.9339) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-0.0063,0.8289) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-2.2176,-0.5211) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6345,4.3817,-0.6713) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6345,4.3817,-0.6913) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.135,7.118,93.329) lpos=(-10.635,4.382,-0.691) lprev=(-10.756,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6345,4.3817,-0.6913) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8095,0.2337,0.9339) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-0.0063,0.8289) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-2.2176,-0.5211) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6345,4.3817,-0.6713) mvmt=(0.1217,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6345,4.1923,-0.8872) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.135,7.308,93.133) lpos=(-10.635,4.192,-0.887) lprev=(-10.756,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8095,0.0443,0.7380) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-0.1957,0.6330) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-2.4070,-0.7170) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6345,4.1923,-0.8672) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6345,4.1923,-1.6372) mvmt=(0.1217,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.135,7.308,92.383) lpos=(-10.635,4.192,-1.637) lprev=(-10.756,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8095,0.0443,-0.0120) mvmt=(0.1217,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-0.1957,-0.1170) mvmt=(0.1217,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1655,-0.1957,-0.1170) out=(0.1655,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6345,4.1923,-0.8872) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.135,7.308,93.133) lpos=(-10.635,4.192,-0.887) lprev=(-10.756,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8095,0.0443,0.7380) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-0.1957,0.6330) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1655,-2.4070,-0.7170) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6345,4.1923,-0.8672) mvmt=(0.1217,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5158,4.3771,-0.6961) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.123,93.324) lpos=(-10.516,4.377,-0.696) lprev=(-10.635,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5158,4.3771,-0.6961) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6908,0.2290,0.9291) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-0.0110,0.8241) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-2.2223,-0.5259) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3915,-2.9130,2.3284) mvmt=(-0.1233,0.1817,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.3771,-0.6761) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.3771,-0.6961) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.123,93.324) lpos=(-10.516,4.377,-0.696) lprev=(-10.635,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5158,4.3771,-0.6961) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6908,0.2290,0.9291) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-0.0110,0.8241) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-2.2223,-0.5259) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3915,-2.9130,2.3284) mvmt=(-0.1233,0.1817,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.3771,-0.6761) mvmt=(0.1187,0.1847,0.1911) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.1923,-0.8872) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.308,93.133) lpos=(-10.516,4.192,-0.887) lprev=(-10.635,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6908,0.0443,0.7380) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-0.1957,0.6330) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-2.4070,-0.7170) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.1923,-0.8672) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.1923,-1.6372) mvmt=(0.1187,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.308,92.383) lpos=(-10.516,4.192,-1.637) lprev=(-10.635,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6908,0.0443,-0.0120) mvmt=(0.1187,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-0.1957,-0.1170) mvmt=(0.1187,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2842,-0.1957,-0.1170) out=(0.2842,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5158,4.1923,-0.8872) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.308,93.133) lpos=(-10.516,4.192,-0.887) lprev=(-10.635,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6908,0.0443,0.7380) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-0.1957,0.6330) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-2.4070,-0.7170) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.1923,-0.8672) mvmt=(0.1187,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3927,4.3839,-0.6891) mvmt=(0.1231,0.1915,0.1981) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3927,4.3839,-0.6891) mvmt=(0.1231,0.1915,0.1981) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.116,93.331) lpos=(-10.393,4.384,-0.689) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3927,4.3839,-0.6891) mvmt=(0.1231,0.1915,0.1981) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5677,0.2358,0.9361) mvmt=(0.1231,0.1915,0.1981) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5677,0.2358,0.9361) out=(-0.5677,0.2358,1.2646) delta=(0.0000,0.0000,0.3285) deltaMag=0.3285 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4525 dpPos=0.2477 dpMove=-0.4243 iDist=0.5475 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.3927,4.3839,-0.3606) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.116,93.659) lpos=(-10.393,4.384,-0.361) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3927,4.3839,-0.3606) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 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.3927,4.3839,-0.3606) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5677,0.2358,1.2646) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[push-back-disp] site=dispatch center=(0.4073,-0.0042,1.1596) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[push-back-disp] site=dispatch center=(0.4073,-2.2155,-0.1904) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[push-back-disp] site=dispatch center=(0.4335,-2.7971,2.6639) mvmt=(-0.1279,0.1884,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[push-back-disp] site=dispatch center=(-10.3927,4.3839,-0.3406) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[push-back-disp] site=dispatch center=(-10.3927,4.3839,-0.3606) mvmt=(0.1231,0.1915,0.5266) collide=False insertType=1 objState=0x303 winterp=0.4525 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.116,93.659) lpos=(-10.393,4.384,-0.361) lprev=(-10.516,4.192,-0.887) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.116,93.331) lpos=(-10.393,4.384,-0.689) lprev=(-10.516,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3927,4.1923,-0.8872) mvmt=(0.1231,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.308,93.133) lpos=(-10.393,4.192,-0.887) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5677,0.0443,0.7380) mvmt=(0.1231,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4525 return=-1 +[push-back-disp] site=dispatch center=(-10.3927,4.1923,-0.8872) mvmt=(0.1231,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.308,93.133) lpos=(-10.393,4.192,-0.887) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5677,0.0443,0.7380) mvmt=(0.1231,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5677,0.0443,0.7380) out=(-0.5677,0.0443,1.0731) delta=(0.0000,0.0000,0.3351) deltaMag=0.3351 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4415 dpPos=0.2430 dpMove=-0.4243 iDist=0.5585 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3927,4.1923,-0.5521) mvmt=(0.1231,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.308,93.468) lpos=(-10.393,4.192,-0.552) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3927,4.1923,-0.5521) mvmt=(0.1231,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5677,0.0443,1.0731) mvmt=(0.1231,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4073,-0.1957,0.9681) mvmt=(0.1231,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4073,-2.4070,-0.3819) mvmt=(0.1231,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.6097,-2.8722,2.4724) mvmt=(0.0483,0.1132,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3927,4.1923,-0.5321) mvmt=(0.1231,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3927,4.1923,-0.5521) mvmt=(0.1231,0.0000,0.3351) collide=False insertType=1 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.893,7.308,93.468) lpos=(-10.393,4.192,-0.552) lprev=(-10.516,4.192,-0.887) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5158,4.3079,-0.6353) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.192,93.385) lpos=(-10.516,4.308,-0.635) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5158,4.3079,-0.6353) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6908,0.1599,0.9899) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-0.0801,0.8849) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-2.2914,-0.4651) mvmt=(-0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4551,-2.9401,2.3892) mvmt=(-0.1063,0.0454,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.3079,-0.6153) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.3079,-0.6353) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.192,93.385) lpos=(-10.516,4.308,-0.635) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5158,4.3079,-0.6353) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6908,0.1599,0.9899) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-0.0801,0.8849) mvmt=(0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2842,-2.2914,-0.4651) mvmt=(-0.0000,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4551,-2.9401,2.3892) mvmt=(-0.1063,0.0454,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5158,4.3079,-0.6153) mvmt=(0.0000,0.1156,0.2519) 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=(-10.4441,4.3079,-0.6353) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.192,93.385) lpos=(-10.444,4.308,-0.635) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4441,4.3079,-0.6353) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6191,0.1599,0.9899) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-0.0801,0.8849) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-2.2914,-0.4651) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4832,-2.8741,2.3892) mvmt=(-0.0782,0.1114,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.3079,-0.6153) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.3079,-0.6353) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.192,93.385) lpos=(-10.444,4.308,-0.635) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4441,4.3079,-0.6353) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6191,0.1599,0.9899) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-0.0801,0.8849) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-2.2914,-0.4651) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4832,-2.8741,2.3892) mvmt=(-0.0782,0.1114,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.3079,-0.6153) mvmt=(0.0718,0.1156,0.2519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.1923,-0.8872) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.308,93.133) lpos=(-10.444,4.192,-0.887) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6191,0.0443,0.7380) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-0.1957,0.6330) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-2.4070,-0.7170) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.1923,-0.8672) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.1923,-1.6372) mvmt=(0.0718,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.308,92.383) lpos=(-10.444,4.192,-1.637) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6191,0.0443,-0.0120) mvmt=(0.0718,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-0.1957,-0.1170) mvmt=(0.0718,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3559,-0.1957,-0.1170) out=(0.3559,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4441,4.1923,-0.8872) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.308,93.133) lpos=(-10.444,4.192,-0.887) lprev=(-10.516,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6191,0.0443,0.7380) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-0.1957,0.6330) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-2.4070,-0.7170) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.1923,-0.8672) mvmt=(0.0718,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3256,4.3767,-0.6965) mvmt=(0.1185,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3256,4.3767,-0.6965) mvmt=(0.1185,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.123,93.323) lpos=(-10.326,4.377,-0.697) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3256,4.3767,-0.6965) mvmt=(0.1185,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5006,0.2286,0.9287) mvmt=(0.1185,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5006,0.2286,0.9287) out=(-0.5006,0.2286,1.2574) delta=(0.0000,0.0000,0.3288) deltaMag=0.3288 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4520 dpPos=0.2475 dpMove=-0.4243 iDist=0.5480 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.3256,4.3767,-0.3678) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.123,93.652) lpos=(-10.326,4.377,-0.368) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3256,4.3767,-0.3678) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 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.3256,4.3767,-0.3678) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5006,0.2286,1.2574) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[push-back-disp] site=dispatch center=(0.4744,-0.0114,1.1525) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[push-back-disp] site=dispatch center=(0.4744,-2.2226,-0.1976) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[push-back-disp] site=dispatch center=(0.4665,-2.7381,2.6567) mvmt=(-0.1231,0.1813,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[push-back-disp] site=dispatch center=(-10.3256,4.3767,-0.3478) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[push-back-disp] site=dispatch center=(-10.3256,4.3767,-0.3678) mvmt=(0.1185,0.1843,0.5195) collide=False insertType=1 objState=0x303 winterp=0.4520 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.123,93.652) lpos=(-10.326,4.377,-0.368) lprev=(-10.444,4.192,-0.887) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.123,93.323) lpos=(-10.326,4.377,-0.697) lprev=(-10.444,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3256,4.1923,-0.8872) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.308,93.133) lpos=(-10.326,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5006,0.0443,0.7380) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4520 return=-1 +[push-back-disp] site=dispatch center=(-10.3256,4.1923,-0.8872) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.308,93.133) lpos=(-10.326,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5006,0.0443,0.7380) mvmt=(0.1185,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5006,0.0443,0.7380) out=(-0.5006,0.0443,1.0731) delta=(0.0000,0.0000,0.3351) deltaMag=0.3351 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4415 dpPos=0.2430 dpMove=-0.4243 iDist=0.5585 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3256,4.1923,-0.5521) mvmt=(0.1185,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.308,93.468) lpos=(-10.326,4.192,-0.552) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3256,4.1923,-0.5521) mvmt=(0.1185,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5006,0.0443,1.0731) mvmt=(0.1185,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4744,-0.1957,0.9681) mvmt=(0.1185,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4744,-2.4070,-0.3819) mvmt=(0.1185,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.6360,-2.8105,2.4724) mvmt=(0.0465,0.1090,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3256,4.1923,-0.5321) mvmt=(0.1185,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3256,4.1923,-0.5521) mvmt=(0.1185,0.0000,0.3351) collide=False insertType=1 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.308,93.468) lpos=(-10.326,4.192,-0.552) lprev=(-10.444,4.192,-0.887) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4441,4.4042,-0.5391) mvmt=(0.0000,0.2118,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.4042,-0.5391) mvmt=(0.0000,0.2118,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.096,93.481) lpos=(-10.444,4.404,-0.539) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4441,4.4042,-0.5391) mvmt=(0.0000,0.2118,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6191,0.2561,1.0861) mvmt=(0.0000,0.2118,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,0.0161,0.9811) mvmt=(0.0000,0.2118,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-2.1951,-0.3689) mvmt=(-0.0000,0.2118,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3947,-2.8363,2.4854) mvmt=(-0.1949,0.0831,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.4042,-0.5191) mvmt=(0.0000,0.2118,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.096,93.481) lpos=(-10.444,4.404,-0.539) lprev=(-10.444,4.192,-0.887) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3112,4.4063,-0.5369) mvmt=(0.1329,0.2140,0.3503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3112,4.4063,-0.5369) mvmt=(0.1329,0.2140,0.3503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.094,93.483) lpos=(-10.311,4.406,-0.537) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3112,4.4063,-0.5369) mvmt=(0.1329,0.2140,0.3503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4862,0.2583,1.0883) mvmt=(0.1329,0.2140,0.3503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4862,0.2583,1.0883) out=(-0.4862,0.2583,1.2871) 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.3112,4.4063,-0.3381) mvmt=(0.1329,0.2140,0.5491) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.094,93.682) lpos=(-10.311,4.406,-0.338) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3112,4.4063,-0.3381) mvmt=(0.1329,0.2140,0.5491) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.3112,4.4063,-0.3381) out=(-10.3112,4.4063,-0.3381) 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.3381 dpMove=-0.4012 iDist=2.0392 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.3112,4.4063,-0.3381) mvmt=(0.1329,0.2140,0.5491) 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.4862,0.2583,1.2871) mvmt=(0.1329,0.2140,0.5491) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4888,0.0183,1.1821) mvmt=(0.1329,0.2140,0.5491) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4888,-2.1930,-0.1679) mvmt=(0.1329,0.2140,0.5491) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4448,-2.7133,2.6864) mvmt=(-0.1447,0.2062,0.5491) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3112,4.4063,-0.3181) mvmt=(0.1329,0.2140,0.5491) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3112,4.4063,-0.3381) mvmt=(0.1329,0.2140,0.5491) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.094,93.682) lpos=(-10.311,4.406,-0.338) lprev=(-10.444,4.192,-0.887) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.094,93.483) lpos=(-10.311,4.406,-0.537) lprev=(-10.444,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3112,4.1923,-0.8872) mvmt=(0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.308,93.133) lpos=(-10.311,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4862,0.0443,0.7380) mvmt=(0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3112,4.1923,-0.8872) mvmt=(0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.308,93.133) lpos=(-10.311,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4862,0.0443,0.7380) mvmt=(0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4862,0.0443,0.7380) out=(-0.4862,0.0443,1.0731) delta=(0.0000,0.0000,0.3351) deltaMag=0.3351 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4415 dpPos=0.2430 dpMove=-0.4243 iDist=0.5585 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3112,4.1923,-0.5521) mvmt=(0.1329,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.308,93.468) lpos=(-10.311,4.192,-0.552) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3112,4.1923,-0.5521) mvmt=(0.1329,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4862,0.0443,1.0731) mvmt=(0.1329,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4888,-0.1957,0.9681) mvmt=(0.1329,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4888,-2.4070,-0.3819) mvmt=(0.1329,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.6417,-2.7972,2.4724) mvmt=(0.0521,0.1222,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3112,4.1923,-0.5321) mvmt=(0.1329,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3112,4.1923,-0.5521) mvmt=(0.1329,0.0000,0.3351) collide=False insertType=1 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.811,7.308,93.468) lpos=(-10.311,4.192,-0.552) lprev=(-10.444,4.192,-0.887) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4441,4.4037,-0.5396) mvmt=(0.0000,0.2113,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.4037,-0.5396) mvmt=(0.0000,0.2113,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.096,93.480) lpos=(-10.444,4.404,-0.540) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4441,4.4037,-0.5396) mvmt=(0.0000,0.2113,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6191,0.2556,1.0856) mvmt=(0.0000,0.2113,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,0.0156,0.9806) mvmt=(0.0000,0.2113,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-2.1957,-0.3694) mvmt=(-0.0000,0.2113,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3952,-2.8365,2.4849) mvmt=(-0.1944,0.0829,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.4037,-0.5196) mvmt=(0.0000,0.2113,0.3476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.096,93.480) lpos=(-10.444,4.404,-0.540) lprev=(-10.444,4.192,-0.887) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3558,4.4081,-0.5352) mvmt=(0.0883,0.2157,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3558,4.4081,-0.5352) mvmt=(0.0883,0.2157,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.856,7.092,93.485) lpos=(-10.356,4.408,-0.535) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3558,4.4081,-0.5352) mvmt=(0.0883,0.2157,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.5308,0.2600,1.0900) mvmt=(0.0883,0.2157,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4442,0.0200,0.9850) mvmt=(0.0883,0.2157,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4442,-2.1913,-0.3650) mvmt=(0.0883,0.2157,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4257,-2.7536,2.4893) mvmt=(-0.1638,0.1658,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3558,4.4081,-0.5152) mvmt=(0.0883,0.2157,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.856,7.092,93.485) lpos=(-10.356,4.408,-0.535) lprev=(-10.444,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3558,4.1923,-0.8872) mvmt=(0.0883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.856,7.308,93.133) lpos=(-10.356,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5308,0.0443,0.7380) mvmt=(0.0883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3558,4.1923,-0.8872) mvmt=(0.0883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.856,7.308,93.133) lpos=(-10.356,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5308,0.0443,0.7380) mvmt=(0.0883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5308,0.0443,0.7380) out=(-0.5308,0.0443,1.0731) delta=(0.0000,0.0000,0.3351) deltaMag=0.3351 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4415 dpPos=0.2430 dpMove=-0.4243 iDist=0.5585 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3558,4.1923,-0.5521) mvmt=(0.0883,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.856,7.308,93.468) lpos=(-10.356,4.192,-0.552) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3558,4.1923,-0.5521) mvmt=(0.0883,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5308,0.0443,1.0731) mvmt=(0.0883,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4442,-0.1957,0.9681) mvmt=(0.0883,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.4442,-2.4070,-0.3819) mvmt=(0.0883,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(0.6242,-2.8382,2.4724) mvmt=(0.0346,0.0812,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3558,4.1923,-0.5321) mvmt=(0.0883,0.0000,0.3351) collide=False insertType=0 objState=0x303 winterp=0.4415 return=-1 +[push-back-disp] site=dispatch center=(-10.3558,4.1923,-0.5521) mvmt=(0.0883,0.0000,0.3351) collide=False insertType=1 objState=0x303 winterp=0.4415 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.856,7.308,93.468) lpos=(-10.356,4.192,-0.552) lprev=(-10.444,4.192,-0.887) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4441,4.3982,-0.5451) mvmt=(0.0000,0.2058,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.3982,-0.5451) mvmt=(0.0000,0.2058,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.102,93.475) lpos=(-10.444,4.398,-0.545) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4441,4.3982,-0.5451) mvmt=(0.0000,0.2058,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6191,0.2501,1.0801) mvmt=(0.0000,0.2058,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,0.0101,0.9751) mvmt=(0.0000,0.2058,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3559,-2.2011,-0.3749) mvmt=(-0.0000,0.2058,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4002,-2.8387,2.4794) mvmt=(-0.1893,0.0808,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4441,4.3982,-0.5251) mvmt=(0.0000,0.2058,0.3421) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,7.102,93.475) lpos=(-10.444,4.398,-0.545) lprev=(-10.444,4.192,-0.887) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4299,4.4107,-0.5325) mvmt=(0.0142,0.2184,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4299,4.4107,-0.5325) mvmt=(0.0142,0.2184,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.089,93.487) lpos=(-10.430,4.411,-0.533) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4299,4.4107,-0.5325) mvmt=(0.0142,0.2184,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6049,0.2627,1.0927) mvmt=(0.0142,0.2184,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3701,0.0227,0.9877) mvmt=(0.0142,0.2184,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3701,-2.1886,-0.3623) mvmt=(0.0142,0.2184,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3942,-2.8207,2.4920) mvmt=(-0.1953,0.0987,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4299,4.4107,-0.5125) mvmt=(0.0142,0.2184,0.3547) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.089,93.487) lpos=(-10.430,4.411,-0.533) lprev=(-10.444,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4299,4.1923,-0.8872) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.308,93.133) lpos=(-10.430,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6049,0.0443,0.7380) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3701,-0.1957,0.6330) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3701,-2.4070,-0.7170) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4299,4.1923,-0.8672) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4299,4.1923,-1.6372) mvmt=(0.0142,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.308,92.383) lpos=(-10.430,4.192,-1.637) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6049,0.0443,-0.0120) mvmt=(0.0142,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3701,-0.1957,-0.1170) mvmt=(0.0142,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3701,-0.1957,-0.1170) out=(0.3701,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4299,4.1923,-0.8872) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.308,93.133) lpos=(-10.430,4.192,-0.887) lprev=(-10.444,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6049,0.0443,0.7380) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3701,-0.1957,0.6330) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3701,-2.4070,-0.7170) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4299,4.1923,-0.8672) mvmt=(0.0142,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4534,4.4022,-0.6701) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.953,7.098,93.350) lpos=(-10.453,4.402,-0.670) lprev=(-10.430,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4534,4.4022,-0.6701) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6284,0.2541,0.9551) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3466,0.0141,0.8501) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3466,-2.1971,-0.4999) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3928,-2.8457,2.3544) mvmt=(-0.2023,0.0607,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4534,4.4022,-0.6501) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4534,4.4022,-0.6701) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.953,7.098,93.350) lpos=(-10.453,4.402,-0.670) lprev=(-10.430,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4534,4.4022,-0.6701) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6284,0.2541,0.9551) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3466,0.0141,0.8501) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3466,-2.1971,-0.4999) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3928,-2.8457,2.3544) mvmt=(-0.2023,0.0607,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4534,4.4022,-0.6501) mvmt=(-0.0235,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4534,4.1923,-0.8872) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.953,7.308,93.133) lpos=(-10.453,4.192,-0.887) lprev=(-10.430,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6284,0.0443,0.7380) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3466,-0.1957,0.6330) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3466,-2.4070,-0.7170) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4534,4.1923,-0.8672) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4534,4.1923,-1.6372) mvmt=(-0.0235,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.953,7.308,92.383) lpos=(-10.453,4.192,-1.637) lprev=(-10.430,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6284,0.0443,-0.0120) 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.3466,-0.1957,-0.1170) 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.3466,-0.1957,-0.1170) out=(0.3466,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4534,4.1923,-0.8872) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.953,7.308,93.133) lpos=(-10.453,4.192,-0.887) lprev=(-10.430,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6284,0.0443,0.7380) 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.3466,-0.1957,0.6330) 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.3466,-2.4070,-0.7170) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4534,4.1923,-0.8672) mvmt=(-0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4888,4.3965,-0.6760) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.989,7.103,93.344) lpos=(-10.489,4.397,-0.676) lprev=(-10.453,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4888,4.3965,-0.6760) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6638,0.2485,0.9492) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,0.0085,0.8442) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,-2.2028,-0.5058) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3841,-2.8805,2.3485) mvmt=(-0.2017,0.0475,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4888,4.3965,-0.6560) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4888,4.3965,-0.6760) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.989,7.103,93.344) lpos=(-10.489,4.397,-0.676) lprev=(-10.453,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4888,4.3965,-0.6760) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6638,0.2485,0.9492) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,0.0085,0.8442) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,-2.2028,-0.5058) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3841,-2.8805,2.3485) mvmt=(-0.2017,0.0475,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4888,4.3965,-0.6560) mvmt=(-0.0354,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4888,4.1923,-0.8872) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.989,7.308,93.133) lpos=(-10.489,4.192,-0.887) lprev=(-10.453,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6638,0.0443,0.7380) mvmt=(-0.0354,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,-0.1957,0.6330) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,-2.4070,-0.7170) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4888,4.1923,-0.8672) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4888,4.1923,-1.6372) mvmt=(-0.0354,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.989,7.308,92.383) lpos=(-10.489,4.192,-1.637) lprev=(-10.453,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6638,0.0443,-0.0120) mvmt=(-0.0354,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,-0.1957,-0.1170) mvmt=(-0.0354,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3112,-0.1957,-0.1170) out=(0.3112,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4888,4.1923,-0.8872) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.989,7.308,93.133) lpos=(-10.489,4.192,-0.887) lprev=(-10.453,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6638,0.0443,0.7380) mvmt=(-0.0354,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,-0.1957,0.6330) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3112,-2.4070,-0.7170) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4888,4.1923,-0.8672) mvmt=(-0.0354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5228,4.3880,-0.6848) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.023,7.112,93.335) lpos=(-10.523,4.388,-0.685) lprev=(-10.489,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5228,4.3880,-0.6848) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6978,0.2400,0.9404) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-0.0000,0.8354) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-2.2113,-0.5146) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3786,-2.9151,2.3397) mvmt=(-0.1933,0.0455,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5228,4.3880,-0.6648) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5228,4.3880,-0.6848) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.023,7.112,93.335) lpos=(-10.523,4.388,-0.685) lprev=(-10.489,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5228,4.3880,-0.6848) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6978,0.2400,0.9404) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-0.0000,0.8354) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-2.2113,-0.5146) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3786,-2.9151,2.3397) mvmt=(-0.1933,0.0455,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5228,4.3880,-0.6648) mvmt=(-0.0340,0.1957,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5228,4.1923,-0.8872) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.023,7.308,93.133) lpos=(-10.523,4.192,-0.887) lprev=(-10.489,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6978,0.0443,0.7380) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-0.1957,0.6330) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-2.4070,-0.7170) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5228,4.1923,-0.8672) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5228,4.1923,-1.6372) mvmt=(-0.0340,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.023,7.308,92.383) lpos=(-10.523,4.192,-1.637) lprev=(-10.489,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6978,0.0443,-0.0120) mvmt=(-0.0340,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-0.1957,-0.1170) mvmt=(-0.0340,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2772,-0.1957,-0.1170) out=(0.2772,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5228,4.1923,-0.8872) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.023,7.308,93.133) lpos=(-10.523,4.192,-0.887) lprev=(-10.489,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6978,0.0443,0.7380) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-0.1957,0.6330) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2772,-2.4070,-0.7170) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5228,4.1923,-0.8672) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5569,4.3889,-0.6839) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.057,7.111,93.336) lpos=(-10.557,4.389,-0.684) lprev=(-10.523,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5569,4.3889,-0.6839) mvmt=(-0.0341,0.1966,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.7319,0.2408,0.9413) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,0.0008,0.8363) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,-2.2104,-0.5137) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3645,-2.9461,2.3406) mvmt=(-0.1942,0.0457,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5569,4.3889,-0.6639) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5569,4.3889,-0.6839) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.057,7.111,93.336) lpos=(-10.557,4.389,-0.684) lprev=(-10.523,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5569,4.3889,-0.6839) mvmt=(-0.0341,0.1966,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.7319,0.2408,0.9413) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,0.0008,0.8363) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,-2.2104,-0.5137) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3645,-2.9461,2.3406) mvmt=(-0.1942,0.0457,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5569,4.3889,-0.6639) mvmt=(-0.0341,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5569,4.1923,-0.8872) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.057,7.308,93.133) lpos=(-10.557,4.192,-0.887) lprev=(-10.523,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7319,0.0443,0.7380) mvmt=(-0.0341,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,-0.1957,0.6330) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,-2.4070,-0.7170) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5569,4.1923,-0.8672) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5569,4.1923,-1.6372) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.057,7.308,92.383) lpos=(-10.557,4.192,-1.637) lprev=(-10.523,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7319,0.0443,-0.0120) mvmt=(-0.0341,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,-0.1957,-0.1170) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2431,-0.1957,-0.1170) out=(0.2431,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5569,4.1923,-0.8872) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.057,7.308,93.133) lpos=(-10.557,4.192,-0.887) lprev=(-10.523,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7319,0.0443,0.7380) mvmt=(-0.0341,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,-0.1957,0.6330) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2431,-2.4070,-0.7170) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5569,4.1923,-0.8672) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5910,4.3886,-0.6842) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.091,7.111,93.336) lpos=(-10.591,4.389,-0.684) lprev=(-10.557,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5910,4.3886,-0.6842) mvmt=(-0.0341,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.7660,0.2406,0.9410) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,0.0006,0.8360) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,-2.2107,-0.5140) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3513,-2.9776,2.3403) mvmt=(-0.1939,0.0457,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5910,4.3886,-0.6642) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5910,4.3886,-0.6842) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.091,7.111,93.336) lpos=(-10.591,4.389,-0.684) lprev=(-10.557,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5910,4.3886,-0.6842) mvmt=(-0.0341,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.7660,0.2406,0.9410) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,0.0006,0.8360) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,-2.2107,-0.5140) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3513,-2.9776,2.3403) mvmt=(-0.1939,0.0457,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5910,4.3886,-0.6642) mvmt=(-0.0341,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5910,4.1923,-0.8872) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.091,7.308,93.133) lpos=(-10.591,4.192,-0.887) lprev=(-10.557,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7660,0.0443,0.7380) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,-0.1957,0.6330) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,-2.4070,-0.7170) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5910,4.1923,-0.8672) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5910,4.1923,-1.6372) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.091,7.308,92.383) lpos=(-10.591,4.192,-1.637) lprev=(-10.557,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7660,0.0443,-0.0120) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,-0.1957,-0.1170) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2090,-0.1957,-0.1170) out=(0.2090,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5910,4.1923,-0.8872) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.091,7.308,93.133) lpos=(-10.591,4.192,-0.887) lprev=(-10.557,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7660,0.0443,0.7380) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,-0.1957,0.6330) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2090,-2.4070,-0.7170) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5910,4.1923,-0.8672) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6245,4.3852,-0.6877) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.115,93.332) lpos=(-10.624,4.385,-0.688) lprev=(-10.591,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6245,4.3852,-0.6877) mvmt=(-0.0335,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=(-0.7995,0.2371,0.9375) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.0029,0.8325) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.2141,-0.5175) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3414,-3.0097,2.3368) mvmt=(-0.1905,0.0449,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.3852,-0.6677) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.3852,-0.6877) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.115,93.332) lpos=(-10.624,4.385,-0.688) lprev=(-10.591,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6245,4.3852,-0.6877) mvmt=(-0.0335,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=(-0.7995,0.2371,0.9375) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.0029,0.8325) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.2141,-0.5175) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3414,-3.0097,2.3368) mvmt=(-0.1905,0.0449,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.3852,-0.6677) mvmt=(-0.0335,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.1923,-0.8872) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.308,93.133) lpos=(-10.624,4.192,-0.887) lprev=(-10.591,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7995,0.0443,0.7380) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.1957,0.6330) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.4070,-0.7170) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.1923,-0.8672) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.1923,-1.6372) mvmt=(-0.0335,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.308,92.383) lpos=(-10.624,4.192,-1.637) lprev=(-10.591,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7995,0.0443,-0.0120) mvmt=(-0.0335,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.1957,-0.1170) mvmt=(-0.0335,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1755,-0.1957,-0.1170) out=(0.1755,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.1923,-0.8872) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.308,93.133) lpos=(-10.624,4.192,-0.887) lprev=(-10.591,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7995,0.0443,0.7380) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.1957,0.6330) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.4070,-0.7170) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.1923,-0.8672) mvmt=(-0.0335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6581,4.3860,-0.6869) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.158,7.114,93.333) lpos=(-10.658,4.386,-0.687) lprev=(-10.624,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6581,4.3860,-0.6869) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8331,0.2380,0.9383) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-0.0020,0.8333) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-2.2133,-0.5167) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3274,-3.0403,2.3376) mvmt=(-0.1913,0.0451,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6581,4.3860,-0.6669) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6581,4.3860,-0.6869) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.158,7.114,93.333) lpos=(-10.658,4.386,-0.687) lprev=(-10.624,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6581,4.3860,-0.6869) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8331,0.2380,0.9383) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-0.0020,0.8333) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-2.2133,-0.5167) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3274,-3.0403,2.3376) mvmt=(-0.1913,0.0451,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6581,4.3860,-0.6669) mvmt=(-0.0336,0.1937,0.2004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6581,4.1923,-0.8872) mvmt=(-0.0336,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.158,7.308,93.133) lpos=(-10.658,4.192,-0.887) lprev=(-10.624,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8331,0.0443,0.7380) mvmt=(-0.0336,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-0.1957,0.6330) mvmt=(-0.0336,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-2.4070,-0.7170) mvmt=(-0.0336,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6581,4.1923,-0.8672) mvmt=(-0.0336,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6581,4.1923,-1.6372) mvmt=(-0.0336,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.158,7.308,92.383) lpos=(-10.658,4.192,-1.637) lprev=(-10.624,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8331,0.0443,-0.0120) mvmt=(-0.0336,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-0.1957,-0.1170) mvmt=(-0.0336,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1419,-0.1957,-0.1170) out=(0.1419,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6581,4.1923,-0.8872) mvmt=(-0.0336,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.158,7.308,93.133) lpos=(-10.658,4.192,-0.887) lprev=(-10.624,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8331,0.0443,0.7380) mvmt=(-0.0336,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-0.1957,0.6330) mvmt=(-0.0336,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1419,-2.4070,-0.7170) mvmt=(-0.0336,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6581,4.1923,-0.8672) mvmt=(-0.0336,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6927,4.3919,-0.6808) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.193,7.108,93.339) lpos=(-10.693,4.392,-0.681) lprev=(-10.658,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6927,4.3919,-0.6808) mvmt=(-0.0346,0.1996,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=(-0.8677,0.2438,0.9444) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,0.0038,0.8394) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,-2.2074,-0.5106) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3084,-3.0699,2.3437) mvmt=(-0.1971,0.0464,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6927,4.3919,-0.6608) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6927,4.3919,-0.6808) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.193,7.108,93.339) lpos=(-10.693,4.392,-0.681) lprev=(-10.658,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6927,4.3919,-0.6808) mvmt=(-0.0346,0.1996,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=(-0.8677,0.2438,0.9444) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,0.0038,0.8394) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,-2.2074,-0.5106) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3084,-3.0699,2.3437) mvmt=(-0.1971,0.0464,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6927,4.3919,-0.6608) mvmt=(-0.0346,0.1996,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6927,4.1923,-0.8872) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.193,7.308,93.133) lpos=(-10.693,4.192,-0.887) lprev=(-10.658,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8677,0.0443,0.7380) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,-0.1957,0.6330) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,-2.4070,-0.7170) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6927,4.1923,-0.8672) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6927,4.1923,-1.6372) mvmt=(-0.0346,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.193,7.308,92.383) lpos=(-10.693,4.192,-1.637) lprev=(-10.658,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8677,0.0443,-0.0120) mvmt=(-0.0346,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,-0.1957,-0.1170) mvmt=(-0.0346,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1073,-0.1957,-0.1170) out=(0.1073,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6927,4.1923,-0.8872) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.193,7.308,93.133) lpos=(-10.693,4.192,-0.887) lprev=(-10.658,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8677,0.0443,0.7380) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,-0.1957,0.6330) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1073,-2.4070,-0.7170) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6927,4.1923,-0.8672) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7274,4.3923,-0.6804) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.108,93.340) lpos=(-10.727,4.392,-0.680) lprev=(-10.693,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7274,4.3923,-0.6804) mvmt=(-0.0347,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.9025,0.2443,0.9448) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,0.0043,0.8399) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,-2.2070,-0.5102) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2944,-3.1016,2.3441) mvmt=(-0.1976,0.0465,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7274,4.3923,-0.6604) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7274,4.3923,-0.6804) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.108,93.340) lpos=(-10.727,4.392,-0.680) lprev=(-10.693,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7274,4.3923,-0.6804) mvmt=(-0.0347,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.9025,0.2443,0.9448) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,0.0043,0.8399) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,-2.2070,-0.5102) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2944,-3.1016,2.3441) mvmt=(-0.1976,0.0465,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7274,4.3923,-0.6604) mvmt=(-0.0347,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7274,4.1923,-0.8872) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.308,93.133) lpos=(-10.727,4.192,-0.887) lprev=(-10.693,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9025,0.0443,0.7380) mvmt=(-0.0347,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,-0.1957,0.6330) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,-2.4070,-0.7170) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7274,4.1923,-0.8672) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7274,4.1923,-1.6372) mvmt=(-0.0347,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.308,92.383) lpos=(-10.727,4.192,-1.637) lprev=(-10.693,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9025,0.0443,-0.0120) mvmt=(-0.0347,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,-0.1957,-0.1170) mvmt=(-0.0347,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0726,-0.1957,-0.1170) out=(0.0726,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7274,4.1923,-0.8872) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.308,93.133) lpos=(-10.727,4.192,-0.887) lprev=(-10.693,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9025,0.0443,0.7380) mvmt=(-0.0347,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,-0.1957,0.6330) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0726,-2.4070,-0.7170) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7274,4.1923,-0.8672) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7641,4.4037,-0.6685) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.096,93.351) lpos=(-10.764,4.404,-0.669) lprev=(-10.727,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7641,4.4037,-0.6685) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9391,0.2557,0.9567) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,0.0157,0.8517) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,-2.1956,-0.4983) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2695,-3.1309,2.3560) mvmt=(-0.2089,0.0492,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7641,4.4037,-0.6485) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7641,4.4037,-0.6685) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.096,93.351) lpos=(-10.764,4.404,-0.669) lprev=(-10.727,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7641,4.4037,-0.6685) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9391,0.2557,0.9567) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,0.0157,0.8517) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,-2.1956,-0.4983) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2695,-3.1309,2.3560) mvmt=(-0.2089,0.0492,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7641,4.4037,-0.6485) mvmt=(-0.0367,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7641,4.1923,-0.8872) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.308,93.133) lpos=(-10.764,4.192,-0.887) lprev=(-10.727,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9391,0.0443,0.7380) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,-0.1957,0.6330) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,-2.4070,-0.7170) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7641,4.1923,-0.8672) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7641,4.1923,-1.6372) mvmt=(-0.0367,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.308,92.383) lpos=(-10.764,4.192,-1.637) lprev=(-10.727,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9391,0.0443,-0.0120) mvmt=(-0.0367,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,-0.1957,-0.1170) mvmt=(-0.0367,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0359,-0.1957,-0.1170) out=(0.0359,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7641,4.1923,-0.8872) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.308,93.133) lpos=(-10.764,4.192,-0.887) lprev=(-10.727,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9391,0.0443,0.7380) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,-0.1957,0.6330) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0359,-2.4070,-0.7170) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7641,4.1923,-0.8672) mvmt=(-0.0367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7973,4.3836,-0.6893) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.116,93.331) lpos=(-10.797,4.384,-0.689) lprev=(-10.764,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7973,4.3836,-0.6893) mvmt=(-0.0332,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=(-0.9724,0.2356,0.9359) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-0.0044,0.8309) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-2.2157,-0.5191) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7973,4.3836,-0.6693) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7973,4.3836,-0.6893) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.116,93.331) lpos=(-10.797,4.384,-0.689) lprev=(-10.764,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7973,4.3836,-0.6893) mvmt=(-0.0332,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=(-0.9724,0.2356,0.9359) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-0.0044,0.8309) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-2.2157,-0.5191) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7973,4.3836,-0.6693) mvmt=(-0.0332,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7973,4.1923,-0.8872) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.308,93.133) lpos=(-10.797,4.192,-0.887) lprev=(-10.764,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9724,0.0443,0.7380) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-0.1957,0.6330) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-2.4070,-0.7170) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7973,4.1923,-0.8672) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7973,4.1923,-1.6372) mvmt=(-0.0332,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.308,92.383) lpos=(-10.797,4.192,-1.637) lprev=(-10.764,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9724,0.0443,-0.0120) mvmt=(-0.0332,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-0.1957,-0.1170) mvmt=(-0.0332,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0027,-0.1957,-0.1170) out=(0.0027,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7973,4.1923,-0.8872) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.308,93.133) lpos=(-10.797,4.192,-0.887) lprev=(-10.764,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9724,0.0443,0.7380) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-0.1957,0.6330) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0027,-2.4070,-0.7170) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7973,4.1923,-0.8672) mvmt=(-0.0332,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8315,4.3893,-0.6834) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.332,7.111,93.337) lpos=(-10.832,4.389,-0.683) lprev=(-10.797,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8315,4.3893,-0.6834) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0065,0.2413,0.9418) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0315,0.0013,0.8368) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0315,-2.2100,-0.5132) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8315,4.3893,-0.6634) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8315,4.3893,-0.6834) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.332,7.111,93.337) lpos=(-10.832,4.389,-0.683) lprev=(-10.797,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8315,4.3893,-0.6834) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0065,0.2413,0.9418) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0315,0.0013,0.8368) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0315,-2.2100,-0.5132) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8315,4.3893,-0.6634) mvmt=(-0.0342,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8315,4.1923,-0.8872) mvmt=(-0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.332,7.308,93.133) lpos=(-10.832,4.192,-0.887) lprev=(-10.797,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0065,0.0443,0.7380) 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.0315,-0.1957,0.6330) 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.0315,-2.4070,-0.7170) mvmt=(-0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8315,4.1923,-0.8672) mvmt=(-0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8315,4.1923,-1.6372) mvmt=(-0.0342,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.332,7.308,92.383) lpos=(-10.832,4.192,-1.637) lprev=(-10.797,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0065,0.0443,-0.0120) 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.0315,-0.1957,-0.1170) 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.0315,-0.1957,-0.1170) out=(-0.0315,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8315,4.1923,-0.8872) mvmt=(-0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.332,7.308,93.133) lpos=(-10.832,4.192,-0.887) lprev=(-10.797,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0065,0.0443,0.7380) 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.0315,-0.1957,0.6330) 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.0315,-2.4070,-0.7170) mvmt=(-0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8315,4.1923,-0.8672) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8662,4.3921,-0.6806) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.108,93.339) lpos=(-10.866,4.392,-0.681) lprev=(-10.832,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8662,4.3921,-0.6806) mvmt=(-0.0347,0.1998,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.0412,0.2440,0.9446) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,0.0040,0.8396) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-2.2072,-0.5104) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8662,4.3921,-0.6606) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8662,4.3921,-0.6806) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.108,93.339) lpos=(-10.866,4.392,-0.681) lprev=(-10.832,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8662,4.3921,-0.6806) mvmt=(-0.0347,0.1998,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.0412,0.2440,0.9446) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,0.0040,0.8396) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-2.2072,-0.5104) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8662,4.3921,-0.6606) mvmt=(-0.0347,0.1998,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8662,4.1923,-0.8872) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.308,93.133) lpos=(-10.866,4.192,-0.887) lprev=(-10.832,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0412,0.0443,0.7380) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-0.1957,0.6330) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-2.4070,-0.7170) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8662,4.1923,-0.8672) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8662,4.1923,-1.6372) mvmt=(-0.0347,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.308,92.383) lpos=(-10.866,4.192,-1.637) lprev=(-10.832,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0412,0.0443,-0.0120) mvmt=(-0.0347,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-0.1957,-0.1170) mvmt=(-0.0347,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0662,-0.1957,-0.1170) out=(-0.0662,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8662,4.1923,-0.8872) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.366,7.308,93.133) lpos=(-10.866,4.192,-0.887) lprev=(-10.832,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0412,0.0443,0.7380) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-0.1957,0.6330) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-2.4070,-0.7170) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8662,4.1923,-0.8672) mvmt=(-0.0347,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9006,4.3907,-0.6820) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.109,93.338) lpos=(-10.901,4.391,-0.682) lprev=(-10.866,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9006,4.3907,-0.6820) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0756,0.2427,0.9432) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,0.0027,0.8382) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,-2.2086,-0.5118) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9006,4.3907,-0.6620) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9006,4.3907,-0.6820) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.109,93.338) lpos=(-10.901,4.391,-0.682) lprev=(-10.866,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9006,4.3907,-0.6820) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0756,0.2427,0.9432) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,0.0027,0.8382) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,-2.2086,-0.5118) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9006,4.3907,-0.6620) mvmt=(-0.0344,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9006,4.1923,-0.8872) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.308,93.133) lpos=(-10.901,4.192,-0.887) lprev=(-10.866,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0756,0.0443,0.7380) mvmt=(-0.0344,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,-0.1957,0.6330) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,-2.4070,-0.7170) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9006,4.1923,-0.8672) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9006,4.1923,-1.6372) mvmt=(-0.0344,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.308,92.383) lpos=(-10.901,4.192,-1.637) lprev=(-10.866,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0756,0.0443,-0.0120) mvmt=(-0.0344,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,-0.1957,-0.1170) mvmt=(-0.0344,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1006,-0.1957,-0.1170) out=(-0.1006,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9006,4.1923,-0.8872) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.308,93.133) lpos=(-10.901,4.192,-0.887) lprev=(-10.866,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0756,0.0443,0.7380) mvmt=(-0.0344,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,-0.1957,0.6330) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1006,-2.4070,-0.7170) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9006,4.1923,-0.8672) mvmt=(-0.0344,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9352,4.3915,-0.6812) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.435,7.108,93.339) lpos=(-10.935,4.392,-0.681) lprev=(-10.901,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9352,4.3915,-0.6812) mvmt=(-0.0346,0.1992,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.1102,0.2435,0.9440) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,0.0035,0.8391) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,-2.2078,-0.5110) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9352,4.3915,-0.6612) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9352,4.3915,-0.6812) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.435,7.108,93.339) lpos=(-10.935,4.392,-0.681) lprev=(-10.901,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9352,4.3915,-0.6812) mvmt=(-0.0346,0.1992,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.1102,0.2435,0.9440) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,0.0035,0.8391) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,-2.2078,-0.5110) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9352,4.3915,-0.6612) mvmt=(-0.0346,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9352,4.1923,-0.8872) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.435,7.308,93.133) lpos=(-10.935,4.192,-0.887) lprev=(-10.901,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1102,0.0443,0.7380) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,-0.1957,0.6330) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,-2.4070,-0.7170) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9352,4.1923,-0.8672) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9352,4.1923,-1.6372) mvmt=(-0.0346,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.435,7.308,92.383) lpos=(-10.935,4.192,-1.637) lprev=(-10.901,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1102,0.0443,-0.0120) mvmt=(-0.0346,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,-0.1957,-0.1170) mvmt=(-0.0346,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1352,-0.1957,-0.1170) out=(-0.1352,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9352,4.1923,-0.8872) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.435,7.308,93.133) lpos=(-10.935,4.192,-0.887) lprev=(-10.901,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1102,0.0443,0.7380) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,-0.1957,0.6330) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1352,-2.4070,-0.7170) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9352,4.1923,-0.8672) mvmt=(-0.0346,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9702,4.3937,-0.6789) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.470,7.106,93.341) lpos=(-10.970,4.394,-0.679) lprev=(-10.935,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9702,4.3937,-0.6789) mvmt=(-0.0349,0.2014,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.1452,0.2457,0.9463) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,0.0057,0.8413) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,-2.2056,-0.5087) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9702,4.3937,-0.6589) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9702,4.3937,-0.6789) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.470,7.106,93.341) lpos=(-10.970,4.394,-0.679) lprev=(-10.935,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9702,4.3937,-0.6789) mvmt=(-0.0349,0.2014,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.1452,0.2457,0.9463) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,0.0057,0.8413) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,-2.2056,-0.5087) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9702,4.3937,-0.6589) mvmt=(-0.0349,0.2014,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9702,4.1923,-0.8872) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.470,7.308,93.133) lpos=(-10.970,4.192,-0.887) lprev=(-10.935,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1452,0.0443,0.7380) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,-0.1957,0.6330) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,-2.4070,-0.7170) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9702,4.1923,-0.8672) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9702,4.1923,-1.6372) mvmt=(-0.0349,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.470,7.308,92.383) lpos=(-10.970,4.192,-1.637) lprev=(-10.935,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1452,0.0443,-0.0120) mvmt=(-0.0349,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,-0.1957,-0.1170) mvmt=(-0.0349,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1702,-0.1957,-0.1170) out=(-0.1702,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9702,4.1923,-0.8872) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.470,7.308,93.133) lpos=(-10.970,4.192,-0.887) lprev=(-10.935,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1452,0.0443,0.7380) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,-0.1957,0.6330) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1702,-2.4070,-0.7170) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9702,4.1923,-0.8672) mvmt=(-0.0349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0043,4.3889,-0.6838) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.504,7.111,93.336) lpos=(-11.004,4.389,-0.684) lprev=(-10.970,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0043,4.3889,-0.6838) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1793,0.2409,0.9414) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,0.0009,0.8364) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,-2.2104,-0.5136) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0043,4.3889,-0.6638) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0043,4.3889,-0.6838) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.504,7.111,93.336) lpos=(-11.004,4.389,-0.684) lprev=(-10.970,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0043,4.3889,-0.6838) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1793,0.2409,0.9414) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,0.0009,0.8364) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,-2.2104,-0.5136) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0043,4.3889,-0.6638) mvmt=(-0.0341,0.1966,0.2034) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0043,4.1923,-0.8872) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.504,7.308,93.133) lpos=(-11.004,4.192,-0.887) lprev=(-10.970,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1793,0.0443,0.7380) mvmt=(-0.0341,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,-0.1957,0.6330) mvmt=(-0.0341,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,-2.4070,-0.7170) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0043,4.1923,-0.8672) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0043,4.1923,-1.6372) mvmt=(-0.0341,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.504,7.308,92.383) lpos=(-11.004,4.192,-1.637) lprev=(-10.970,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1793,0.0443,-0.0120) mvmt=(-0.0341,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,-0.1957,-0.1170) mvmt=(-0.0341,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2043,-0.1957,-0.1170) out=(-0.2043,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0043,4.1923,-0.8872) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.504,7.308,93.133) lpos=(-11.004,4.192,-0.887) lprev=(-10.970,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1793,0.0443,0.7380) mvmt=(-0.0341,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,-0.1957,0.6330) mvmt=(-0.0341,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2043,-2.4070,-0.7170) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0043,4.1923,-0.8672) mvmt=(-0.0341,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0386,4.3902,-0.6826) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.110,93.337) lpos=(-11.039,4.390,-0.683) lprev=(-11.004,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0386,4.3902,-0.6826) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2136,0.2421,0.9426) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,0.0021,0.8376) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,-2.2091,-0.5124) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0386,4.3902,-0.6626) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0386,4.3902,-0.6826) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.110,93.337) lpos=(-11.039,4.390,-0.683) lprev=(-11.004,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0386,4.3902,-0.6826) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2136,0.2421,0.9426) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,0.0021,0.8376) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,-2.2091,-0.5124) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0386,4.3902,-0.6626) mvmt=(-0.0343,0.1978,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0386,4.1923,-0.8872) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.308,93.133) lpos=(-11.039,4.192,-0.887) lprev=(-11.004,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2136,0.0443,0.7380) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,-0.1957,0.6330) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,-2.4070,-0.7170) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0386,4.1923,-0.8672) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0386,4.1923,-1.6372) mvmt=(-0.0343,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.308,92.383) lpos=(-11.039,4.192,-1.637) lprev=(-11.004,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2136,0.0443,-0.0120) mvmt=(-0.0343,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,-0.1957,-0.1170) mvmt=(-0.0343,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2386,-0.1957,-0.1170) out=(-0.2386,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0386,4.1923,-0.8872) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.308,93.133) lpos=(-11.039,4.192,-0.887) lprev=(-11.004,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2136,0.0443,0.7380) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,-0.1957,0.6330) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2386,-2.4070,-0.7170) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0386,4.1923,-0.8672) mvmt=(-0.0343,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0725,4.3876,-0.6853) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.572,7.112,93.335) lpos=(-11.072,4.388,-0.685) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0725,4.3876,-0.6853) mvmt=(-0.0339,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=(-1.2475,0.2395,0.9399) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-0.0005,0.8349) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-2.2117,-0.5151) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0725,4.3876,-0.6653) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0725,4.3876,-0.6853) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.572,7.112,93.335) lpos=(-11.072,4.388,-0.685) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0725,4.3876,-0.6853) mvmt=(-0.0339,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=(-1.2475,0.2395,0.9399) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-0.0005,0.8349) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-2.2117,-0.5151) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0725,4.3876,-0.6653) mvmt=(-0.0339,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0725,4.1923,-0.8872) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.572,7.308,93.133) lpos=(-11.072,4.192,-0.887) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2475,0.0443,0.7380) mvmt=(-0.0339,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-0.1957,0.6330) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-2.4070,-0.7170) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0725,4.1923,-0.8672) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0725,4.1923,-1.6372) mvmt=(-0.0339,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.572,7.308,92.383) lpos=(-11.072,4.192,-1.637) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2475,0.0443,-0.0120) mvmt=(-0.0339,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-0.1957,-0.1170) mvmt=(-0.0339,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2725,-0.1957,-0.1170) out=(-0.2725,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0725,4.1923,-0.8872) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.572,7.308,93.133) lpos=(-11.072,4.192,-0.887) lprev=(-11.039,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2475,0.0443,0.7380) mvmt=(-0.0339,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-0.1957,0.6330) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2725,-2.4070,-0.7170) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0725,4.1923,-0.8672) mvmt=(-0.0339,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1075,4.3942,-0.6784) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.106,93.342) lpos=(-11.108,4.394,-0.678) lprev=(-11.072,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3942,-0.6784) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2825,0.2462,0.9468) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,0.0062,0.8418) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.2051,-0.5082) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3942,-0.6584) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3942,-0.6784) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.106,93.342) lpos=(-11.108,4.394,-0.678) lprev=(-11.072,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3942,-0.6784) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2825,0.2462,0.9468) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,0.0062,0.8418) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.2051,-0.5082) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3942,-0.6584) mvmt=(-0.0350,0.2019,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.1923,-0.8872) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.308,93.133) lpos=(-11.108,4.192,-0.887) lprev=(-11.072,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2825,0.0443,0.7380) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-0.1957,0.6330) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.4070,-0.7170) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.1923,-0.8672) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.1923,-1.6372) mvmt=(-0.0350,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.308,92.383) lpos=(-11.108,4.192,-1.637) lprev=(-11.072,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2825,0.0443,-0.0120) mvmt=(-0.0350,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-0.1957,-0.1170) mvmt=(-0.0350,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3075,-0.1957,-0.1170) out=(-0.3075,-0.1957,0.6330) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.1075,4.1923,-0.8872) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.308,93.133) lpos=(-11.108,4.192,-0.887) lprev=(-11.072,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2825,0.0443,0.7380) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-0.1957,0.6330) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.4070,-0.7170) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.1923,-0.8672) mvmt=(-0.0350,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1416,4.3885,-0.6842) mvmt=(-0.0341,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1416,4.3885,-0.6842) mvmt=(-0.0341,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.111,93.336) lpos=(-11.142,4.389,-0.684) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1416,4.3885,-0.6842) mvmt=(-0.0341,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3166,0.2405,0.9410) mvmt=(-0.0341,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3416,0.0005,0.8360) mvmt=(-0.0341,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3416,-2.2108,-0.5140) mvmt=(-0.0341,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1416,4.3885,-0.6642) mvmt=(-0.0341,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.111,93.336) lpos=(-11.142,4.389,-0.684) lprev=(-11.108,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3885,-0.6842) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.111,93.336) lpos=(-11.108,4.389,-0.684) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3885,-0.6842) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2825,0.2405,0.9410) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,0.0005,0.8360) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.2108,-0.5140) mvmt=(-0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3885,-0.6642) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3885,-0.6842) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.111,93.336) lpos=(-11.108,4.389,-0.684) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3885,-0.6842) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2825,0.2405,0.9410) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,0.0005,0.8360) mvmt=(0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.2108,-0.5140) mvmt=(-0.0000,0.1962,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3885,-0.6642) mvmt=(0.0000,0.1962,0.2030) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6813) mvmt=(-0.0345,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6813) mvmt=(-0.0345,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.109,93.339) lpos=(-11.142,4.391,-0.681) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6813) mvmt=(-0.0345,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=(-1.3171,0.2433,0.9439) mvmt=(-0.0345,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3421,0.0033,0.8389) mvmt=(-0.0345,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3421,-2.2079,-0.5111) mvmt=(-0.0345,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6613) mvmt=(-0.0345,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.109,93.339) lpos=(-11.142,4.391,-0.681) lprev=(-11.108,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3914,-0.6813) mvmt=(0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.109,93.339) lpos=(-11.108,4.391,-0.681) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3914,-0.6813) mvmt=(0.0000,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=(-1.2825,0.2433,0.9439) mvmt=(0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,0.0033,0.8389) mvmt=(0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.2079,-0.5111) mvmt=(-0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3914,-0.6613) mvmt=(0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3914,-0.6813) mvmt=(0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.109,93.339) lpos=(-11.108,4.391,-0.681) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3914,-0.6813) mvmt=(0.0000,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=(-1.2825,0.2433,0.9439) mvmt=(0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,0.0033,0.8389) mvmt=(0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3075,-2.2079,-0.5111) mvmt=(-0.0000,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1075,4.3914,-0.6613) mvmt=(0.0000,0.1990,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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1423,4.3925,-0.6801) mvmt=(-0.0347,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1423,4.3925,-0.6801) mvmt=(-0.0347,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.107,93.340) lpos=(-11.142,4.393,-0.680) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1423,4.3925,-0.6801) mvmt=(-0.0347,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.3173,0.2445,0.9451) mvmt=(-0.0347,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3423,0.0045,0.8401) mvmt=(-0.0347,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3423,-2.2068,-0.5099) mvmt=(-0.0347,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1423,4.3925,-0.6601) mvmt=(-0.0347,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.107,93.340) lpos=(-11.142,4.393,-0.680) lprev=(-11.108,4.192,-0.887) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3925,-0.6801) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.107,93.340) lpos=(-11.108,4.393,-0.680) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3925,-0.6801) 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.2825,0.2445,0.9451) 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.3075,0.0045,0.8401) 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.3075,-2.2068,-0.5099) 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.1075,4.3925,-0.6601) 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.1075,4.3925,-0.6801) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.608,7.107,93.340) lpos=(-11.108,4.393,-0.680) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1075,4.3925,-0.6801) 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.2825,0.2445,0.9451) 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.3075,0.0045,0.8401) 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.3075,-2.2068,-0.5099) 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.1075,4.3925,-0.6601) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0892,4.0866,-0.9966) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,7.413,93.023) lpos=(-11.089,4.087,-0.997) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2642,-0.0615,0.6286) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2892,-0.3015,0.5236) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2892,-2.5127,-0.8264) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0892,4.0866,-0.9766) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0892,4.0866,-1.7466) mvmt=(0.0184,-0.1058,-0.8594) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,7.413,92.273) lpos=(-11.089,4.087,-1.747) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2642,-0.0615,-0.1214) mvmt=(0.0184,-0.1058,-0.8594) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2892,-0.3015,-0.2264) mvmt=(0.0184,-0.1058,-0.8594) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2892,-0.3015,-0.2264) out=(-0.2892,-0.3015,0.5236) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0892,4.0866,-0.9966) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.589,7.413,93.023) lpos=(-11.089,4.087,-0.997) lprev=(-11.108,4.192,-0.887) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2642,-0.0615,0.6286) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2892,-0.3015,0.5236) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2892,-2.5127,-0.8264) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0892,4.0866,-0.9766) mvmt=(0.0184,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0705,3.9789,-1.1081) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.521,92.912) lpos=(-11.070,3.979,-1.108) lprev=(-11.089,4.087,-0.997) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2455,-0.1692,0.5171) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2705,-0.4092,0.4121) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2705,-2.6205,-0.9379) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0705,3.9789,-1.0881) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0705,3.9789,-1.8581) mvmt=(0.0187,-0.1077,-0.8614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.521,92.162) lpos=(-11.070,3.979,-1.858) lprev=(-11.089,4.087,-0.997) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2455,-0.1692,-0.2329) mvmt=(0.0187,-0.1077,-0.8614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2705,-0.4092,-0.3379) mvmt=(0.0187,-0.1077,-0.8614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2705,-0.4092,-0.3379) out=(-0.2705,-0.4092,0.4121) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0705,3.9789,-1.1081) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,7.521,92.912) lpos=(-11.070,3.979,-1.108) lprev=(-11.089,4.087,-0.997) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2455,-0.1692,0.5171) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2705,-0.4092,0.4121) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2705,-2.6205,-0.9379) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0705,3.9789,-1.0881) mvmt=(0.0187,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0518,3.8711,-1.2195) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.629,92.800) lpos=(-11.052,3.871,-1.220) lprev=(-11.070,3.979,-1.108) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2268,-0.2770,0.4057) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2518,-0.5170,0.3007) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2518,-2.7282,-1.0493) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0518,3.8711,-1.1995) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0518,3.8711,-1.9695) mvmt=(0.0187,-0.1078,-0.8615) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.629,92.050) lpos=(-11.052,3.871,-1.970) lprev=(-11.070,3.979,-1.108) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2268,-0.2770,-0.3443) mvmt=(0.0187,-0.1078,-0.8615) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2518,-0.5170,-0.4493) mvmt=(0.0187,-0.1078,-0.8615) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2518,-0.5170,-0.4493) out=(-0.2518,-0.5170,0.3007) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0518,3.8711,-1.2195) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.552,7.629,92.800) lpos=(-11.052,3.871,-1.220) lprev=(-11.070,3.979,-1.108) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2268,-0.2770,0.4057) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2518,-0.5170,0.3007) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2518,-2.7282,-1.0493) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0518,3.8711,-1.1995) mvmt=(0.0187,-0.1078,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0333,3.7647,-1.3296) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,7.735,92.690) lpos=(-11.033,3.765,-1.330) lprev=(-11.052,3.871,-1.220) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2083,-0.3834,0.2956) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2333,-0.6234,0.1906) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2333,-2.8346,-1.1594) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0333,3.7647,-1.3096) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0333,3.7647,-2.0796) mvmt=(0.0185,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,7.735,91.940) lpos=(-11.033,3.765,-2.080) lprev=(-11.052,3.871,-1.220) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2083,-0.3834,-0.4544) mvmt=(0.0185,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2333,-0.6234,-0.5594) mvmt=(0.0185,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2333,-0.6234,-0.5594) out=(-0.2333,-0.6234,0.1906) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0333,3.7647,-1.3296) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,7.735,92.690) lpos=(-11.033,3.765,-1.330) lprev=(-11.052,3.871,-1.220) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2083,-0.3834,0.2956) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2333,-0.6234,0.1906) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2333,-2.8346,-1.1594) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0333,3.7647,-1.3096) mvmt=(0.0185,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0165,3.6680,-1.4297) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.517,7.832,92.590) lpos=(-11.017,3.668,-1.430) lprev=(-11.033,3.765,-1.330) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1915,-0.4801,0.1955) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2165,-0.7201,0.0905) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2165,-2.9313,-1.2595) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0165,3.6680,-1.4097) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0165,3.6680,-2.1797) mvmt=(0.0168,-0.0967,-0.8501) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.517,7.832,91.840) lpos=(-11.017,3.668,-2.180) lprev=(-11.033,3.765,-1.330) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1915,-0.4801,-0.5545) mvmt=(0.0168,-0.0967,-0.8501) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2165,-0.7201,-0.6595) mvmt=(0.0168,-0.0967,-0.8501) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2165,-0.7201,-0.6595) out=(-0.2165,-0.7201,0.0905) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0165,3.6680,-1.4297) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.517,7.832,92.590) lpos=(-11.017,3.668,-1.430) lprev=(-11.033,3.765,-1.330) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1915,-0.4801,0.1955) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2165,-0.7201,0.0905) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2165,-2.9313,-1.2595) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0165,3.6680,-1.4097) mvmt=(0.0168,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9979,3.5607,-1.5406) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.498,7.939,92.479) lpos=(-10.998,3.561,-1.541) lprev=(-11.017,3.668,-1.430) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1729,-0.5873,0.0846) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1979,-0.8273,-0.0204) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1979,-3.0386,-1.3704) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9979,3.5607,-1.5206) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9979,3.5607,-2.2906) mvmt=(0.0186,-0.1073,-0.8610) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.498,7.939,91.729) lpos=(-10.998,3.561,-2.291) lprev=(-11.017,3.668,-1.430) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1729,-0.5873,-0.6654) mvmt=(0.0186,-0.1073,-0.8610) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1979,-0.8273,-0.7704) mvmt=(0.0186,-0.1073,-0.8610) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1979,-0.8273,-0.7704) out=(-0.1979,-0.8273,-0.0204) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9979,3.5607,-1.5406) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.498,7.939,92.479) lpos=(-10.998,3.561,-1.541) lprev=(-11.017,3.668,-1.430) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1729,-0.5873,0.0846) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1979,-0.8273,-0.0204) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1979,-3.0386,-1.3704) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9979,3.5607,-1.5206) mvmt=(0.0186,-0.1073,-0.1110) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9795,3.4546,-1.6504) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,8.045,92.370) lpos=(-10.979,3.455,-1.650) lprev=(-10.998,3.561,-1.541) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1545,-0.6934,-0.0252) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1795,-0.9334,-0.1302) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1795,-3.1447,-1.4802) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9795,3.4546,-1.6304) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9795,3.4546,-2.4004) mvmt=(0.0184,-0.1061,-0.8598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,8.045,91.620) lpos=(-10.979,3.455,-2.400) lprev=(-10.998,3.561,-1.541) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1545,-0.6934,-0.7752) mvmt=(0.0184,-0.1061,-0.8598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1795,-0.9334,-0.8802) mvmt=(0.0184,-0.1061,-0.8598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1795,-0.9334,-0.8802) out=(-0.1795,-0.9334,-0.1302) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9795,3.4546,-1.6504) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,8.045,92.370) lpos=(-10.979,3.455,-1.650) lprev=(-10.998,3.561,-1.541) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1545,-0.6934,-0.0252) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1795,-0.9334,-0.1302) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1795,-3.1447,-1.4802) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9795,3.4546,-1.6304) mvmt=(0.0184,-0.1061,-0.1098) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9614,3.3501,-1.7585) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,8.150,92.262) lpos=(-10.961,3.350,-1.758) lprev=(-10.979,3.455,-1.650) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1364,-0.7979,-0.1333) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1614,-1.0379,-0.2383) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1614,-3.2492,-1.5883) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9614,3.3501,-1.7385) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9614,3.3501,-2.5085) mvmt=(0.0181,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,8.150,91.512) lpos=(-10.961,3.350,-2.508) lprev=(-10.979,3.455,-1.650) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1364,-0.7979,-0.8833) mvmt=(0.0181,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1614,-1.0379,-0.9883) mvmt=(0.0181,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1614,-1.0379,-0.9883) out=(-0.1614,-1.0379,-0.2383) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9614,3.3501,-1.7585) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,8.150,92.262) lpos=(-10.961,3.350,-1.758) lprev=(-10.979,3.455,-1.650) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1364,-0.7979,-0.1333) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1614,-1.0379,-0.2383) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1614,-3.2492,-1.5883) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9614,3.3501,-1.7385) mvmt=(0.0181,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9434,3.2464,-1.8657) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.443,8.254,92.154) lpos=(-10.943,3.246,-1.866) lprev=(-10.961,3.350,-1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1184,-0.9016,-0.2405) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1434,-1.1416,-0.3455) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1434,-3.3529,-1.6955) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9434,3.2464,-1.8457) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9434,3.2464,-2.6157) mvmt=(0.0180,-0.1037,-0.8573) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9434,3.2464,-2.6157) out=(-10.9434,3.2464,-2.5700) delta=(0.0000,0.0000,0.0457) deltaMag=0.0457 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9390 dpPos=0.4343 dpMove=-0.7500 iDist=0.0610 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.443,8.254,91.404) lpos=(-10.943,3.246,-2.616) lprev=(-10.961,3.350,-1.758) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9434,3.2464,-2.5700) mvmt=(0.0180,-0.1037,-0.8115) collide=False insertType=0 objState=0x303 winterp=0.9390 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.443,8.254,91.450) lpos=(-10.943,3.246,-2.570) lprev=(-10.961,3.350,-1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1184,-0.9016,-0.9448) mvmt=(0.0180,-0.1037,-0.8115) collide=False insertType=0 objState=0x303 winterp=0.9390 return=-1 +[push-back-disp] site=dispatch center=(-0.1434,-1.1416,-1.0498) mvmt=(0.0180,-0.1037,-0.8115) collide=False insertType=0 objState=0x303 winterp=0.9390 return=-1 +[push-back] site=adjust_sphere in=(-0.1434,-1.1416,-1.0498) out=(-0.1434,-1.1416,-0.3455) delta=(0.0000,0.0000,0.7043) deltaMag=0.7043 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9390->-0.0000 dpPos=-0.0095 dpMove=-0.4895 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.9434,3.2464,-1.8657) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.443,8.254,92.154) lpos=(-10.943,3.246,-1.866) lprev=(-10.961,3.350,-1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1184,-0.9016,-0.2405) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1434,-1.1416,-0.3455) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1434,-3.3529,-1.6955) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9434,3.2464,-1.8457) mvmt=(0.0180,-0.1037,-0.1073) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9263,3.1483,-1.9672) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.426,8.352,92.053) lpos=(-10.926,3.148,-1.967) lprev=(-10.943,3.246,-1.866) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1013,-0.9997,-0.3420) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1263,-1.2397,-0.4470) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1263,-3.4510,-1.7970) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9263,3.1483,-1.9472) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9263,3.1483,-2.7172) mvmt=(0.0170,-0.0981,-0.8515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9263,3.1483,-2.7172) out=(-10.9263,3.1483,-2.5700) delta=(0.0000,0.0000,0.1472) deltaMag=0.1472 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8037 dpPos=0.3328 dpMove=-0.7500 iDist=0.1963 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.426,8.352,91.303) lpos=(-10.926,3.148,-2.717) lprev=(-10.943,3.246,-1.866) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9263,3.1483,-2.5700) mvmt=(0.0170,-0.0981,-0.7043) collide=False insertType=0 objState=0x303 winterp=0.8037 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.426,8.352,91.450) lpos=(-10.926,3.148,-2.570) lprev=(-10.943,3.246,-1.866) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1013,-0.9997,-0.9448) mvmt=(0.0170,-0.0981,-0.7043) collide=False insertType=0 objState=0x303 winterp=0.8037 return=-1 +[push-back-disp] site=dispatch center=(-0.1263,-1.2397,-1.0498) mvmt=(0.0170,-0.0981,-0.7043) collide=False insertType=0 objState=0x303 winterp=0.8037 return=-1 +[push-back] site=adjust_sphere in=(-0.1263,-1.2397,-1.0498) out=(-0.1263,-1.2397,-0.4470) delta=(0.0000,0.0000,0.6028) deltaMag=0.6028 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.8037->-0.0000 dpPos=0.0611 dpMove=-0.4189 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.9263,3.1483,-1.9672) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.426,8.352,92.053) lpos=(-10.926,3.148,-1.967) lprev=(-10.943,3.246,-1.866) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1013,-0.9997,-0.3420) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1263,-1.2397,-0.4470) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1263,-3.4510,-1.7970) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9263,3.1483,-1.9472) mvmt=(0.0170,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementJump Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9633,3.3614,-1.7468) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.463,8.139,92.273) lpos=(-10.963,3.361,-1.747) lprev=(-10.926,3.148,-1.967) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1383,-0.7867,-0.1216) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1633,-1.0267,-0.2266) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1633,-3.2379,-1.5766) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9633,3.3614,-1.7268) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9633,3.3614,-2.4968) mvmt=(-0.0370,0.2131,-0.5296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.463,8.139,91.523) lpos=(-10.963,3.361,-2.497) lprev=(-10.926,3.148,-1.967) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1383,-0.7867,-0.8716) mvmt=(-0.0370,0.2131,-0.5296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1633,-1.0267,-0.9766) mvmt=(-0.0370,0.2131,-0.5296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1633,-1.0267,-0.9766) out=(-0.1633,-1.0267,-0.2266) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9633,3.3614,-1.7468) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.463,8.139,92.273) lpos=(-10.963,3.361,-1.747) lprev=(-10.926,3.148,-1.967) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1383,-0.7867,-0.1216) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1633,-1.0267,-0.2266) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1633,-3.2379,-1.5766) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9633,3.3614,-1.7268) mvmt=(-0.0370,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9994,3.5695,-1.5316) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.931,92.488) lpos=(-10.999,3.569,-1.532) lprev=(-10.963,3.361,-1.747) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1744,-0.5786,0.0936) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1994,-0.8186,-0.0114) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1994,-3.0298,-1.3614) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9994,3.5695,-1.5116) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9994,3.5695,-2.2816) mvmt=(-0.0361,0.2081,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.931,91.738) lpos=(-10.999,3.569,-2.282) lprev=(-10.963,3.361,-1.747) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1744,-0.5786,-0.6564) mvmt=(-0.0361,0.2081,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1994,-0.8186,-0.7614) mvmt=(-0.0361,0.2081,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1994,-0.8186,-0.7614) out=(-0.1994,-0.8186,-0.0114) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9994,3.5695,-1.5316) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.931,92.488) lpos=(-10.999,3.569,-1.532) lprev=(-10.963,3.361,-1.747) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1744,-0.5786,0.0936) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1994,-0.8186,-0.0114) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1994,-3.0298,-1.3614) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9994,3.5695,-1.5116) mvmt=(-0.0361,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0350,3.7746,-1.3194) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.535,7.725,92.701) lpos=(-11.035,3.775,-1.319) lprev=(-10.999,3.569,-1.532) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2100,-0.3735,0.3058) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2350,-0.6135,0.2008) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2350,-2.8247,-1.1492) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0350,3.7746,-1.2994) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0350,3.7746,-2.0694) mvmt=(-0.0356,0.2051,-0.5378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.535,7.725,91.951) lpos=(-11.035,3.775,-2.069) lprev=(-10.999,3.569,-1.532) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2100,-0.3735,-0.4442) mvmt=(-0.0356,0.2051,-0.5378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2350,-0.6135,-0.5492) mvmt=(-0.0356,0.2051,-0.5378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2350,-0.6135,-0.5492) out=(-0.2350,-0.6135,0.2008) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0350,3.7746,-1.3194) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.535,7.725,92.701) lpos=(-11.035,3.775,-1.319) lprev=(-10.999,3.569,-1.532) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2100,-0.3735,0.3058) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2350,-0.6135,0.2008) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2350,-2.8247,-1.1492) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0350,3.7746,-1.2994) mvmt=(-0.0356,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0709,3.9811,-1.1057) mvmt=(-0.0358,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.519,92.914) lpos=(-11.071,3.981,-1.106) lprev=(-11.035,3.775,-1.319) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2459,-0.1669,0.5195) mvmt=(-0.0358,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2709,-0.4069,0.4145) mvmt=(-0.0358,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2709,-2.6182,-0.9355) mvmt=(-0.0358,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0709,3.9811,-1.0857) mvmt=(-0.0358,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0709,3.9811,-1.8557) mvmt=(-0.0358,0.2065,-0.5363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.519,92.164) lpos=(-11.071,3.981,-1.856) lprev=(-11.035,3.775,-1.319) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2459,-0.1669,-0.2305) mvmt=(-0.0358,0.2065,-0.5363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2709,-0.4069,-0.3355) mvmt=(-0.0358,0.2065,-0.5363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2709,-0.4069,-0.3355) out=(-0.2709,-0.4069,0.4145) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0709,3.9811,-1.1057) mvmt=(-0.0358,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.519,92.914) lpos=(-11.071,3.981,-1.106) lprev=(-11.035,3.775,-1.319) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2459,-0.1669,0.5195) mvmt=(-0.0358,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2709,-0.4069,0.4145) mvmt=(-0.0358,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2709,-2.6182,-0.9355) mvmt=(-0.0358,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0709,3.9811,-1.0857) mvmt=(-0.0358,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8894) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.131) lpos=(-11.107,4.190,-0.889) lprev=(-11.071,3.981,-1.106) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7358) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-0.1978,0.6308) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.4091,-0.7192) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8694) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-1.6394) mvmt=(-0.0363,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,92.381) lpos=(-11.107,4.190,-1.639) lprev=(-11.071,3.981,-1.106) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,-0.0142) mvmt=(-0.0363,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-0.1978,-0.1192) mvmt=(-0.0363,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3072,-0.1978,-0.1192) out=(-0.3072,-0.1978,0.6308) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.1072,4.1902,-0.8894) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.131) lpos=(-11.107,4.190,-0.889) lprev=(-11.071,3.981,-1.106) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7358) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-0.1978,0.6308) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.4091,-0.7192) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8694) mvmt=(-0.0363,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1440,4.4027,-0.6696) mvmt=(-0.0369,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1440,4.4027,-0.6696) mvmt=(-0.0369,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.644,7.097,93.350) lpos=(-11.144,4.403,-0.670) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1440,4.4027,-0.6696) mvmt=(-0.0369,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3190,0.2547,0.9556) mvmt=(-0.0369,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3440,0.0147,0.8506) mvmt=(-0.0369,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3440,-2.1966,-0.4994) mvmt=(-0.0369,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1440,4.4027,-0.6496) mvmt=(-0.0369,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.644,7.097,93.350) lpos=(-11.144,4.403,-0.670) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4027,-0.6696) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.097,93.350) lpos=(-11.107,4.403,-0.670) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4027,-0.6696) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2547,0.9556) 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.3072,0.0147,0.8506) 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.3072,-2.1966,-0.4994) 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.1072,4.4027,-0.6496) 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.1072,4.4027,-0.6696) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.097,93.350) lpos=(-11.107,4.403,-0.670) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4027,-0.6696) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2547,0.9556) 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.3072,0.0147,0.8506) 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.3072,-2.1966,-0.4994) 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.1072,4.4027,-0.6496) mvmt=(0.0000,0.2125,0.2198) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[push-back-disp] site=dispatch center=(-11.1238,4.3886,-0.7538) mvmt=(-0.0166,0.1984,0.1357) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.624,7.111,93.266) lpos=(-11.124,4.389,-0.754) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid n=(1.000,0.000,0.000) sides=Landblock +[push-back-disp] site=dispatch center=(-11.1072,4.3886,-0.7538) mvmt=(0.0000,0.1984,0.1357) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.111,93.266) lpos=(-11.107,4.389,-0.754) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.2406,0.8714) mvmt=(0.0000,0.1984,0.1357) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0006,0.7664) mvmt=(0.0000,0.1984,0.1357) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3886,-0.7538) mvmt=(0.0000,0.1984,0.1357) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.111,93.266) lpos=(-11.107,4.389,-0.754) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.2406,0.8714) mvmt=(0.0000,0.1984,0.1357) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0006,0.7664) mvmt=(0.0000,0.1984,0.1357) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3072,0.0006,0.7664) out=(-0.3072,-0.1978,0.6308) delta=(0.0000,-0.1984,-0.1357) deltaMag=0.2404 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.4316 dpMove=-0.0484 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 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1072,4.3538,-0.7201) mvmt=(0.0000,0.1636,0.1693) collide=True insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.146,93.300) lpos=(-11.107,4.354,-0.720) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.2058,0.9051) mvmt=(0.0000,0.1636,0.1693) collide=True insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-0.0342,0.8001) mvmt=(0.0000,0.1636,0.1693) collide=True insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2455,-0.5499) mvmt=(-0.0000,0.1636,0.1693) collide=True insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3538,-0.7001) mvmt=(0.0000,0.1636,0.1693) collide=True insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:884 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.9082) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.112) lpos=(-11.107,4.190,-0.908) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7170) 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.3072,-0.1978,0.6120) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.9082) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.112) lpos=(-11.107,4.190,-0.908) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7170) 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.3072,-0.1978,0.6120) 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.3072,-0.1978,0.6120) out=(-0.3072,-0.1978,0.6308) delta=(0.0000,0.0000,0.0188) deltaMag=0.0188 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.4670 dpMove=-0.0130 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=(-11.1072,4.1902,-0.8894) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.131) lpos=(-11.107,4.190,-0.889) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7358) 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.3072,-0.1978,0.6308) 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.3072,-2.4091,-0.7192) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8694) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8894) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.131) lpos=(-11.107,4.190,-0.889) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7358) 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.3072,-0.1978,0.6308) 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.3072,-2.4091,-0.7192) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8694) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1442,4.4034,-0.6689) mvmt=(-0.0370,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1442,4.4034,-0.6689) mvmt=(-0.0370,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.644,7.097,93.351) lpos=(-11.144,4.403,-0.669) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1442,4.4034,-0.6689) mvmt=(-0.0370,0.2132,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=(-1.3192,0.2553,0.9563) mvmt=(-0.0370,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3442,0.0153,0.8513) mvmt=(-0.0370,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3442,-2.1959,-0.4987) mvmt=(-0.0370,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1442,4.4034,-0.6489) mvmt=(-0.0370,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.644,7.097,93.351) lpos=(-11.144,4.403,-0.669) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4034,-0.6689) mvmt=(0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.097,93.351) lpos=(-11.107,4.403,-0.669) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4034,-0.6689) mvmt=(0.0000,0.2132,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=(-1.2822,0.2553,0.9563) mvmt=(0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0153,0.8513) mvmt=(0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.1959,-0.4987) mvmt=(-0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.4034,-0.6489) mvmt=(0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.4034,-0.6689) mvmt=(0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.097,93.351) lpos=(-11.107,4.403,-0.669) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4034,-0.6689) mvmt=(0.0000,0.2132,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=(-1.2822,0.2553,0.9563) mvmt=(0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0153,0.8513) mvmt=(0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.1959,-0.4987) mvmt=(-0.0000,0.2132,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.4034,-0.6489) mvmt=(0.0000,0.2132,0.2205) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1433,4.3983,-0.6742) mvmt=(-0.0361,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1433,4.3983,-0.6742) mvmt=(-0.0361,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.102,93.346) lpos=(-11.143,4.398,-0.674) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1433,4.3983,-0.6742) mvmt=(-0.0361,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3183,0.2502,0.9510) mvmt=(-0.0361,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3433,0.0102,0.8460) mvmt=(-0.0361,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3433,-2.2010,-0.5040) mvmt=(-0.0361,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1433,4.3983,-0.6542) mvmt=(-0.0361,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.102,93.346) lpos=(-11.143,4.398,-0.674) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3983,-0.6742) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.102,93.346) lpos=(-11.107,4.398,-0.674) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3983,-0.6742) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2502,0.9510) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0102,0.8460) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2010,-0.5040) mvmt=(-0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3983,-0.6542) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3983,-0.6742) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.102,93.346) lpos=(-11.107,4.398,-0.674) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3983,-0.6742) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2502,0.9510) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0102,0.8460) mvmt=(0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2010,-0.5040) mvmt=(-0.0000,0.2081,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3983,-0.6542) mvmt=(0.0000,0.2081,0.2153) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1428,4.3956,-0.6769) mvmt=(-0.0356,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1428,4.3956,-0.6769) mvmt=(-0.0356,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.104,93.343) lpos=(-11.143,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1428,4.3956,-0.6769) mvmt=(-0.0356,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3178,0.2476,0.9483) mvmt=(-0.0356,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3428,0.0076,0.8433) mvmt=(-0.0356,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3428,-2.2037,-0.5067) mvmt=(-0.0356,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1428,4.3956,-0.6569) mvmt=(-0.0356,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.104,93.343) lpos=(-11.143,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3956,-0.6769) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.104,93.343) lpos=(-11.107,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3956,-0.6769) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2476,0.9483) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0076,0.8433) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2037,-0.5067) mvmt=(-0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3956,-0.6569) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3956,-0.6769) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.104,93.343) lpos=(-11.107,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3956,-0.6769) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2476,0.9483) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0076,0.8433) mvmt=(0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2037,-0.5067) mvmt=(-0.0000,0.2054,0.2125) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3956,-0.6569) mvmt=(0.0000,0.2054,0.2125) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1428,4.3957,-0.6768) mvmt=(-0.0357,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1428,4.3957,-0.6768) mvmt=(-0.0357,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.104,93.343) lpos=(-11.143,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1428,4.3957,-0.6768) mvmt=(-0.0357,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3178,0.2477,0.9484) mvmt=(-0.0357,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3428,0.0077,0.8434) mvmt=(-0.0357,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3428,-2.2036,-0.5066) mvmt=(-0.0357,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1428,4.3957,-0.6568) mvmt=(-0.0357,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.104,93.343) lpos=(-11.143,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3957,-0.6768) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.104,93.343) lpos=(-11.107,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3957,-0.6768) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2477,0.9484) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0077,0.8434) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2036,-0.5066) mvmt=(-0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3957,-0.6568) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3957,-0.6768) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.104,93.343) lpos=(-11.107,4.396,-0.677) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3957,-0.6768) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2477,0.9484) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0077,0.8434) mvmt=(0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2036,-0.5066) mvmt=(-0.0000,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3957,-0.6568) mvmt=(0.0000,0.2055,0.2126) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1445,4.4054,-0.6669) mvmt=(-0.0373,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1445,4.4054,-0.6669) mvmt=(-0.0373,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.645,7.095,93.353) lpos=(-11.145,4.405,-0.667) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1445,4.4054,-0.6669) mvmt=(-0.0373,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3195,0.2573,0.9583) mvmt=(-0.0373,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3445,0.0173,0.8533) mvmt=(-0.0373,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3445,-2.1940,-0.4967) mvmt=(-0.0373,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1445,4.4054,-0.6469) mvmt=(-0.0373,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.645,7.095,93.353) lpos=(-11.145,4.405,-0.667) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4053,-0.6669) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.095,93.353) lpos=(-11.107,4.405,-0.667) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4053,-0.6669) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2573,0.9583) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0173,0.8533) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.1940,-0.4967) mvmt=(-0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.4053,-0.6469) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.4053,-0.6669) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.095,93.353) lpos=(-11.107,4.405,-0.667) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.4053,-0.6669) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2573,0.9583) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0173,0.8533) mvmt=(0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.1940,-0.4967) mvmt=(-0.0000,0.2151,0.2226) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.4053,-0.6469) mvmt=(0.0000,0.2151,0.2226) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1434,4.3989,-0.6735) mvmt=(-0.0362,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1434,4.3989,-0.6735) mvmt=(-0.0362,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.101,93.347) lpos=(-11.143,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1434,4.3989,-0.6735) mvmt=(-0.0362,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.3184,0.2509,0.9517) mvmt=(-0.0362,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3434,0.0109,0.8467) mvmt=(-0.0362,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3434,-2.2004,-0.5033) mvmt=(-0.0362,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1434,4.3989,-0.6535) mvmt=(-0.0362,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.101,93.347) lpos=(-11.143,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3989,-0.6735) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.101,93.347) lpos=(-11.107,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3989,-0.6735) 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.2822,0.2509,0.9517) 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.3072,0.0109,0.8467) 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.3072,-2.2004,-0.5033) 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.1072,4.3989,-0.6535) 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.1072,4.3989,-0.6735) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.101,93.347) lpos=(-11.107,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3989,-0.6735) 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.2822,0.2509,0.9517) 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.3072,0.0109,0.8467) 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.3072,-2.2004,-0.5033) 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.1072,4.3989,-0.6535) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1430,4.3965,-0.6761) mvmt=(-0.0358,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1430,4.3965,-0.6761) mvmt=(-0.0358,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.104,93.344) lpos=(-11.143,4.396,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1430,4.3965,-0.6761) mvmt=(-0.0358,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.3180,0.2484,0.9491) mvmt=(-0.0358,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3430,0.0084,0.8441) mvmt=(-0.0358,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3430,-2.2029,-0.5059) mvmt=(-0.0358,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1430,4.3965,-0.6561) mvmt=(-0.0358,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.104,93.344) lpos=(-11.143,4.396,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3965,-0.6761) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.104,93.344) lpos=(-11.107,4.396,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3965,-0.6761) 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.2822,0.2484,0.9491) 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.3072,0.0084,0.8441) 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.3072,-2.2029,-0.5059) 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.1072,4.3965,-0.6561) 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.1072,4.3965,-0.6761) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.104,93.344) lpos=(-11.107,4.396,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3965,-0.6761) 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.2822,0.2484,0.9491) 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.3072,0.0084,0.8441) 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.3072,-2.2029,-0.5059) 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.1072,4.3965,-0.6561) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1434,4.3991,-0.6733) mvmt=(-0.0363,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1434,4.3991,-0.6733) mvmt=(-0.0363,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.101,93.347) lpos=(-11.143,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1434,4.3991,-0.6733) mvmt=(-0.0363,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.3184,0.2510,0.9519) mvmt=(-0.0363,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3434,0.0110,0.8469) mvmt=(-0.0363,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3434,-2.2002,-0.5031) mvmt=(-0.0363,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1434,4.3991,-0.6533) mvmt=(-0.0363,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.101,93.347) lpos=(-11.143,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3991,-0.6733) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.101,93.347) lpos=(-11.107,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3991,-0.6733) 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.2822,0.2510,0.9519) 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.3072,0.0110,0.8469) 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.3072,-2.2002,-0.5031) 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.1072,4.3991,-0.6533) 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.1072,4.3991,-0.6733) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.101,93.347) lpos=(-11.107,4.399,-0.673) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3991,-0.6733) 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.2822,0.2510,0.9519) 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.3072,0.0110,0.8469) 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.3072,-2.2002,-0.5031) 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.1072,4.3991,-0.6533) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1432,4.3977,-0.6748) mvmt=(-0.0360,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1432,4.3977,-0.6748) mvmt=(-0.0360,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.102,93.345) lpos=(-11.143,4.398,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1432,4.3977,-0.6748) mvmt=(-0.0360,0.2075,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.3182,0.2496,0.9504) mvmt=(-0.0360,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3432,0.0096,0.8454) mvmt=(-0.0360,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3432,-2.2017,-0.5046) mvmt=(-0.0360,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1432,4.3977,-0.6548) mvmt=(-0.0360,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.102,93.345) lpos=(-11.143,4.398,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3977,-0.6748) mvmt=(0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.102,93.345) lpos=(-11.107,4.398,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3977,-0.6748) mvmt=(0.0000,0.2075,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.2822,0.2496,0.9504) mvmt=(0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0096,0.8454) mvmt=(0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2017,-0.5046) mvmt=(-0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3977,-0.6548) mvmt=(0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3977,-0.6748) mvmt=(0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.102,93.345) lpos=(-11.107,4.398,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3977,-0.6748) mvmt=(0.0000,0.2075,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.2822,0.2496,0.9504) mvmt=(0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0096,0.8454) mvmt=(0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2017,-0.5046) mvmt=(-0.0000,0.2075,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3977,-0.6548) mvmt=(0.0000,0.2075,0.2146) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1431,4.3973,-0.6752) mvmt=(-0.0359,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1431,4.3973,-0.6752) mvmt=(-0.0359,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.103,93.345) lpos=(-11.143,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1431,4.3973,-0.6752) mvmt=(-0.0359,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3181,0.2493,0.9500) mvmt=(-0.0359,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3431,0.0093,0.8450) mvmt=(-0.0359,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3431,-2.2020,-0.5050) mvmt=(-0.0359,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1431,4.3973,-0.6552) mvmt=(-0.0359,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.103,93.345) lpos=(-11.143,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3973,-0.6752) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.103,93.345) lpos=(-11.107,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3973,-0.6752) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2493,0.9500) 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.3072,0.0093,0.8450) 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.3072,-2.2020,-0.5050) 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.1072,4.3973,-0.6552) 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.1072,4.3973,-0.6752) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.103,93.345) lpos=(-11.107,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3973,-0.6752) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2493,0.9500) 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.3072,0.0093,0.8450) 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.3072,-2.2020,-0.5050) 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.1072,4.3973,-0.6552) mvmt=(0.0000,0.2071,0.2142) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1430,4.3968,-0.6757) mvmt=(-0.0359,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1430,4.3968,-0.6757) mvmt=(-0.0359,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.103,93.344) lpos=(-11.143,4.397,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1430,4.3968,-0.6757) mvmt=(-0.0359,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3180,0.2488,0.9495) mvmt=(-0.0359,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3430,0.0088,0.8445) mvmt=(-0.0359,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3430,-2.2025,-0.5055) mvmt=(-0.0359,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1430,4.3968,-0.6557) mvmt=(-0.0359,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.103,93.344) lpos=(-11.143,4.397,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3968,-0.6757) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.103,93.344) lpos=(-11.107,4.397,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3968,-0.6757) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2488,0.9495) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0088,0.8445) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2025,-0.5055) mvmt=(-0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3968,-0.6557) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3968,-0.6757) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.103,93.344) lpos=(-11.107,4.397,-0.676) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3968,-0.6757) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2488,0.9495) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0088,0.8445) mvmt=(0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2025,-0.5055) mvmt=(-0.0000,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3968,-0.6557) mvmt=(0.0000,0.2066,0.2138) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1423,4.3926,-0.6800) mvmt=(-0.0351,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1423,4.3926,-0.6800) mvmt=(-0.0351,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.107,93.340) lpos=(-11.142,4.393,-0.680) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1423,4.3926,-0.6800) mvmt=(-0.0351,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.3173,0.2445,0.9452) mvmt=(-0.0351,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3423,0.0045,0.8402) mvmt=(-0.0351,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3423,-2.2067,-0.5098) mvmt=(-0.0351,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1423,4.3926,-0.6600) mvmt=(-0.0351,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.107,93.340) lpos=(-11.142,4.393,-0.680) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3926,-0.6800) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.107,93.340) lpos=(-11.107,4.393,-0.680) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3926,-0.6800) 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.2822,0.2445,0.9452) 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.3072,0.0045,0.8402) 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.3072,-2.2067,-0.5098) 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.1072,4.3926,-0.6600) 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.1072,4.3926,-0.6800) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.107,93.340) lpos=(-11.107,4.393,-0.680) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3926,-0.6800) 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.2822,0.2445,0.9452) 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.3072,0.0045,0.8402) 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.3072,-2.2067,-0.5098) 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.1072,4.3926,-0.6600) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6813) mvmt=(-0.0349,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6813) mvmt=(-0.0349,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.109,93.339) lpos=(-11.142,4.391,-0.681) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6813) mvmt=(-0.0349,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3171,0.2433,0.9439) mvmt=(-0.0349,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3421,0.0033,0.8389) mvmt=(-0.0349,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3421,-2.2080,-0.5111) mvmt=(-0.0349,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1421,4.3914,-0.6613) mvmt=(-0.0349,0.2012,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.109,93.339) lpos=(-11.142,4.391,-0.681) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3914,-0.6813) mvmt=(0.0000,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.109,93.339) lpos=(-11.107,4.391,-0.681) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3914,-0.6813) mvmt=(0.0000,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2433,0.9439) 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.3072,0.0033,0.8389) 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.3072,-2.2080,-0.5111) mvmt=(-0.0000,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3914,-0.6613) mvmt=(0.0000,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3914,-0.6813) mvmt=(0.0000,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.109,93.339) lpos=(-11.107,4.391,-0.681) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3914,-0.6813) mvmt=(0.0000,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2433,0.9439) 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.3072,0.0033,0.8389) 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.3072,-2.2080,-0.5111) mvmt=(-0.0000,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3914,-0.6613) mvmt=(0.0000,0.2011,0.2081) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1431,4.3974,-0.6750) mvmt=(-0.0360,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1431,4.3974,-0.6750) mvmt=(-0.0360,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.103,93.345) lpos=(-11.143,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1431,4.3974,-0.6750) mvmt=(-0.0360,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3181,0.2494,0.9502) mvmt=(-0.0360,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3431,0.0094,0.8452) mvmt=(-0.0360,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3431,-2.2019,-0.5048) mvmt=(-0.0360,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1431,4.3974,-0.6550) mvmt=(-0.0360,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.643,7.103,93.345) lpos=(-11.143,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3974,-0.6750) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.103,93.345) lpos=(-11.107,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3974,-0.6750) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2494,0.9502) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0094,0.8452) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2019,-0.5048) mvmt=(-0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3974,-0.6550) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3974,-0.6750) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.103,93.345) lpos=(-11.107,4.397,-0.675) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3974,-0.6750) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2494,0.9502) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0094,0.8452) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2019,-0.5048) mvmt=(-0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3974,-0.6550) mvmt=(0.0000,0.2072,0.2144) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1417,4.3891,-0.6837) mvmt=(-0.0345,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1417,4.3891,-0.6837) mvmt=(-0.0345,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.111,93.336) lpos=(-11.142,4.389,-0.684) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1417,4.3891,-0.6837) mvmt=(-0.0345,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.3167,0.2410,0.9415) mvmt=(-0.0345,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3417,0.0010,0.8365) mvmt=(-0.0345,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3417,-2.2102,-0.5135) mvmt=(-0.0345,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1417,4.3891,-0.6637) mvmt=(-0.0345,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.642,7.111,93.336) lpos=(-11.142,4.389,-0.684) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3891,-0.6837) mvmt=(0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.111,93.336) lpos=(-11.107,4.389,-0.684) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3891,-0.6837) mvmt=(0.0000,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.2822,0.2410,0.9415) mvmt=(0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0010,0.8365) mvmt=(0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2102,-0.5135) mvmt=(-0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3891,-0.6637) mvmt=(0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3891,-0.6837) mvmt=(0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.111,93.336) lpos=(-11.107,4.389,-0.684) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3891,-0.6837) mvmt=(0.0000,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.2822,0.2410,0.9415) mvmt=(0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,0.0010,0.8365) mvmt=(0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.2102,-0.5135) mvmt=(-0.0000,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3891,-0.6637) mvmt=(0.0000,0.1989,0.2057) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementJump Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1414,4.3875,-0.6853) mvmt=(-0.0342,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1414,4.3875,-0.6853) mvmt=(-0.0342,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.641,7.113,93.335) lpos=(-11.141,4.387,-0.685) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1414,4.3875,-0.6853) mvmt=(-0.0342,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3164,0.2394,0.9399) mvmt=(-0.0342,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3414,-0.0006,0.8349) mvmt=(-0.0342,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3414,-2.2118,-0.5151) mvmt=(-0.0342,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1414,4.3875,-0.6653) mvmt=(-0.0342,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.641,7.113,93.335) lpos=(-11.141,4.387,-0.685) lprev=(-11.107,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3875,-0.6853) mvmt=(0.0000,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.113,93.335) lpos=(-11.107,4.387,-0.685) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3875,-0.6853) mvmt=(0.0000,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2394,0.9399) 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.3072,-0.0006,0.8349) 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.3072,-2.2118,-0.5151) mvmt=(-0.0000,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3875,-0.6653) mvmt=(0.0000,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3875,-0.6853) mvmt=(0.0000,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.113,93.335) lpos=(-11.107,4.387,-0.685) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.3875,-0.6853) mvmt=(0.0000,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2822,0.2394,0.9399) 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.3072,-0.0006,0.8349) 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.3072,-2.2118,-0.5151) mvmt=(-0.0000,0.1973,0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.3875,-0.6653) mvmt=(0.0000,0.1973,0.2041) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.6239) mvmt=(0.0000,0.0000,0.2655) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.396) lpos=(-11.107,4.190,-0.624) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.6239) mvmt=(0.0000,0.0000,0.2655) 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=(-1.2822,0.0422,1.0013) mvmt=(0.0000,0.0000,0.2655) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-0.1978,0.8963) mvmt=(0.0000,0.0000,0.2655) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.4091,-0.4537) mvmt=(0.0000,0.0000,0.2655) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.6039) mvmt=(0.0000,0.0000,0.2655) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8894) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.131) lpos=(-11.107,4.190,-0.889) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7358) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-0.1978,0.6308) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3072,-2.4091,-0.7192) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8694) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.9080) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.112) lpos=(-11.107,4.190,-0.908) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7172) 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.3072,-0.1978,0.6122) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.9080) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.112) lpos=(-11.107,4.190,-0.908) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7172) 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.3072,-0.1978,0.6122) 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.3072,-0.1978,0.6122) out=(-0.3072,-0.1978,0.6308) delta=(0.0000,0.0000,0.0186) deltaMag=0.0186 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.4671 dpMove=-0.0129 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=(-11.1072,4.1902,-0.8894) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.131) lpos=(-11.107,4.190,-0.889) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7358) 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.3072,-0.1978,0.6308) 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.3072,-2.4091,-0.7192) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8694) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8894) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.310,93.131) lpos=(-11.107,4.190,-0.889) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2822,0.0422,0.7358) 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.3072,-0.1978,0.6308) 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.3072,-2.4091,-0.7192) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1072,4.1902,-0.8694) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9326,4.3652,-0.7084) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.135,93.312) lpos=(-10.933,4.365,-0.708) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1076,0.2171,0.9168) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-0.0229,0.8118) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-2.2341,-0.5382) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9326,4.3652,-0.6884) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9326,4.3652,-0.7084) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.135,93.312) lpos=(-10.933,4.365,-0.708) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1076,0.2171,0.9168) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-0.0229,0.8118) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-2.2341,-0.5382) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9326,4.3652,-0.6884) mvmt=(0.1746,0.1750,0.1810) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9326,4.1902,-0.8894) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.310,93.131) lpos=(-10.933,4.190,-0.889) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1076,0.0422,0.7358) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-0.1978,0.6308) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-2.4091,-0.7192) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9326,4.1902,-0.8694) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9326,4.1902,-1.6394) mvmt=(0.1746,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.310,92.381) lpos=(-10.933,4.190,-1.639) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1076,0.0422,-0.0142) mvmt=(0.1746,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-0.1978,-0.1192) mvmt=(0.1746,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1326,-0.1978,-0.1192) out=(-0.1326,-0.1978,0.6308) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9326,4.1902,-0.8894) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.310,93.131) lpos=(-10.933,4.190,-0.889) lprev=(-11.107,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1076,0.0422,0.7358) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-0.1978,0.6308) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1326,-2.4091,-0.7192) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9326,4.1902,-0.8694) mvmt=(0.1746,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7571,4.3661,-0.7075) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.134,93.313) lpos=(-10.757,4.366,-0.707) lprev=(-10.933,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9321,0.2180,0.9177) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-0.0220,0.8127) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-2.2332,-0.5373) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7571,4.3661,-0.6875) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7571,4.3661,-0.7075) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.134,93.313) lpos=(-10.757,4.366,-0.707) lprev=(-10.933,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9321,0.2180,0.9177) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-0.0220,0.8127) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-2.2332,-0.5373) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7571,4.3661,-0.6875) mvmt=(0.1755,0.1759,0.1820) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7571,4.1902,-0.8894) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.310,93.131) lpos=(-10.757,4.190,-0.889) lprev=(-10.933,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9321,0.0422,0.7358) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-0.1978,0.6308) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-2.4091,-0.7192) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7571,4.1902,-0.8694) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7571,4.1902,-1.6394) mvmt=(0.1755,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.310,92.381) lpos=(-10.757,4.190,-1.639) lprev=(-10.933,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9321,0.0422,-0.0142) mvmt=(0.1755,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-0.1978,-0.1192) mvmt=(0.1755,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0429,-0.1978,-0.1192) out=(0.0429,-0.1978,0.6308) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7571,4.1902,-0.8894) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.310,93.131) lpos=(-10.757,4.190,-0.889) lprev=(-10.933,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9321,0.0422,0.7358) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-0.1978,0.6308) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,-2.4091,-0.7192) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7571,4.1902,-0.8694) mvmt=(0.1755,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3687,-0.7048) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.131,93.315) lpos=(-10.579,4.369,-0.705) lprev=(-10.757,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2207,0.9204) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0193,0.8154) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2306,-0.5346) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3687,-0.6848) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3687,-0.7048) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.131,93.315) lpos=(-10.579,4.369,-0.705) lprev=(-10.757,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2207,0.9204) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0193,0.8154) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2306,-0.5346) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3687,-0.6848) mvmt=(0.1781,0.1785,0.1847) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.1902,-0.8894) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.310,93.131) lpos=(-10.579,4.190,-0.889) lprev=(-10.757,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.0422,0.7358) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.1978,0.6308) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.4091,-0.7192) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.1902,-0.8694) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.1902,-1.6394) mvmt=(0.1781,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.310,92.381) lpos=(-10.579,4.190,-1.639) lprev=(-10.757,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.0422,-0.0142) mvmt=(0.1781,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.1978,-0.1192) mvmt=(0.1781,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2210,-0.1978,-0.1192) out=(0.2210,-0.1978,0.6308) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5790,4.1902,-0.8894) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.310,93.131) lpos=(-10.579,4.190,-0.889) lprev=(-10.757,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.0422,0.7358) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.1978,0.6308) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.4091,-0.7192) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.1902,-0.8694) mvmt=(0.1781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4011,4.3685,-0.7050) mvmt=(0.1779,0.1783,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.132,93.315) lpos=(-10.401,4.368,-0.705) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5761,0.2204,0.9202) mvmt=(0.1779,0.1783,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4011,4.3685,-0.7050) mvmt=(0.1779,0.1783,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.132,93.315) lpos=(-10.401,4.368,-0.705) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5761,0.2204,0.9202) mvmt=(0.1779,0.1783,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5761,0.2204,0.9202) out=(-0.5761,0.2204,1.2492) delta=(0.0000,0.0000,0.3291) deltaMag=0.3291 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4516 dpPos=0.2473 dpMove=-0.4243 iDist=0.5484 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.4011,4.3685,-0.3760) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.132,93.644) lpos=(-10.401,4.368,-0.376) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4011,4.3685,-0.3760) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 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.4011,4.3685,-0.3760) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5761,0.2204,1.2492) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(0.3989,-0.0196,1.1442) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(0.3989,-2.2308,-0.2058) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(0.4444,-2.8108,2.6485) mvmt=(-0.0942,0.2336,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(-10.4011,4.3685,-0.3560) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(-10.4011,4.3685,-0.3760) mvmt=(0.1779,0.1783,0.5135) collide=False insertType=1 objState=0x303 winterp=0.4516 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.132,93.644) lpos=(-10.401,4.368,-0.376) lprev=(-10.579,4.190,-0.889) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5790,4.3715,-0.7081) mvmt=(0.0000,0.1813,0.1813) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.128,93.312) lpos=(-10.579,4.372,-0.708) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2235,0.9171) mvmt=(0.0000,0.1813,0.1813) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0165,0.8121) mvmt=(-0.0000,0.1813,0.1813) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3715,-0.7081) mvmt=(0.0000,0.1813,0.1813) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.128,93.312) lpos=(-10.579,4.372,-0.708) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2235,0.9171) mvmt=(0.0000,0.1813,0.1813) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0165,0.8121) mvmt=(-0.0000,0.1813,0.1813) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2210,-0.0165,0.8121) out=(0.2210,-0.0165,0.8184) 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.9896 dpPos=0.4757 dpMove=-0.4170 iDist=0.0104 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.5790,4.3715,-0.7018) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.128,93.318) lpos=(-10.579,4.372,-0.702) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2235,0.9234) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0165,0.8184) mvmt=(-0.0000,0.1813,0.1876) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2278,-0.5316) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.3718,-2.9732,2.3227) mvmt=(-0.1668,0.0711,0.1876) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3715,-0.6818) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3715,-0.7018) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=1 objState=0x303 winterp=0.9896 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.128,93.318) lpos=(-10.579,4.372,-0.702) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2235,0.9234) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=1 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0165,0.8184) mvmt=(-0.0000,0.1813,0.1876) collide=False insertType=1 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2278,-0.5316) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=1 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.3718,-2.9732,2.3227) mvmt=(-0.1668,0.0711,0.1876) collide=False insertType=1 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3715,-0.6818) mvmt=(0.0000,0.1813,0.1876) collide=False insertType=1 objState=0x303 winterp=0.9896 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5790,4.3684,-0.7051) mvmt=(0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.132,93.315) lpos=(-10.579,4.368,-0.705) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2204,0.9201) mvmt=(0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0196,0.8151) mvmt=(-0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2309,-0.5349) mvmt=(0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(0.3746,-2.9744,2.3194) mvmt=(-0.1639,0.0699,0.1844) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3684,-0.6851) mvmt=(0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=0.9896 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3684,-0.7051) mvmt=(0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.132,93.315) lpos=(-10.579,4.368,-0.705) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.2204,0.9201) mvmt=(0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0196,0.8151) mvmt=(-0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2309,-0.5349) mvmt=(0.0000,0.1782,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3746,-2.9744,2.3194) mvmt=(-0.1639,0.0699,0.1844) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3684,-0.6851) mvmt=(0.0000,0.1782,0.1844) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4003,4.3693,-0.7042) mvmt=(0.1787,0.1791,0.1853) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4003,4.3693,-0.7042) mvmt=(0.1787,0.1791,0.1853) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.131,93.316) lpos=(-10.400,4.369,-0.704) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5753,0.2212,0.9210) mvmt=(0.1787,0.1791,0.1853) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5753,0.2212,0.9210) out=(-0.5753,0.2212,1.2501) 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.4516 dpPos=0.2474 dpMove=-0.4243 iDist=0.5484 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.4003,4.3693,-0.3751) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.131,93.645) lpos=(-10.400,4.369,-0.375) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4003,4.3693,-0.3751) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 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.4003,4.3693,-0.3751) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5753,0.2212,1.2501) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(0.3997,-0.0188,1.1451) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(0.3997,-2.2300,-0.2049) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(0.4440,-2.8097,2.6494) mvmt=(-0.0946,0.2346,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(-10.4003,4.3693,-0.3551) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(-10.4003,4.3693,-0.3751) mvmt=(0.1787,0.1791,0.5143) collide=False insertType=1 objState=0x303 winterp=0.4516 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.131,93.645) lpos=(-10.400,4.369,-0.375) lprev=(-10.579,4.190,-0.889) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.131,93.316) lpos=(-10.400,4.369,-0.704) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4003,4.1902,-0.8894) mvmt=(0.1787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.310,93.131) lpos=(-10.400,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5753,0.0422,0.7358) mvmt=(0.1787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4516 return=-1 +[push-back-disp] site=dispatch center=(-10.4003,4.1902,-0.8894) mvmt=(0.1787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.310,93.131) lpos=(-10.400,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5753,0.0422,0.7358) mvmt=(0.1787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5753,0.0422,0.7358) out=(-0.5753,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4003,4.1902,-0.5542) mvmt=(0.1787,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.310,93.466) lpos=(-10.400,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4003,4.1902,-0.5542) mvmt=(0.1787,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5753,0.0422,1.0710) mvmt=(0.1787,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3997,-0.1978,0.9660) mvmt=(0.1787,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3997,-2.4091,-0.3840) mvmt=(0.1787,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6087,-2.8800,2.4703) mvmt=(0.0701,0.1644,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4003,4.1902,-0.5342) mvmt=(0.1787,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4003,4.1902,-0.5542) mvmt=(0.1787,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.900,7.310,93.466) lpos=(-10.400,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3729,-0.5704) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.127,93.450) lpos=(-10.579,4.373,-0.570) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3729,-0.5704) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2248,1.0548) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0152,0.9498) mvmt=(-0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2264,-0.4002) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3705,-2.9727,2.4541) mvmt=(-0.1680,0.0717,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3729,-0.5504) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3729,-0.5704) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.127,93.450) lpos=(-10.579,4.373,-0.570) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3729,-0.5704) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2248,1.0548) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0152,0.9498) mvmt=(-0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2264,-0.4002) mvmt=(0.0000,0.1827,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3705,-2.9727,2.4541) mvmt=(-0.1680,0.0717,0.3191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3729,-0.5504) mvmt=(0.0000,0.1827,0.3191) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementJump Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3991,4.3768,-0.5665) mvmt=(0.1799,0.1866,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3991,4.3768,-0.5665) mvmt=(0.1799,0.1866,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.123,93.454) lpos=(-10.399,4.377,-0.566) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3991,4.3768,-0.5665) mvmt=(0.1799,0.1866,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5741,0.2287,1.0587) mvmt=(0.1799,0.1866,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4009,-0.0113,0.9538) mvmt=(0.1799,0.1866,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4009,-2.2225,-0.3963) mvmt=(0.1799,0.1866,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4375,-2.8057,2.4580) mvmt=(-0.1011,0.2386,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3991,4.3768,-0.5465) mvmt=(0.1799,0.1866,0.3230) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.123,93.454) lpos=(-10.399,4.377,-0.566) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3991,4.1902,-0.8894) mvmt=(0.1799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.310,93.131) lpos=(-10.399,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5741,0.0422,0.7358) mvmt=(0.1799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3991,4.1902,-0.8894) mvmt=(0.1799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.310,93.131) lpos=(-10.399,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5741,0.0422,0.7358) mvmt=(0.1799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5741,0.0422,0.7358) out=(-0.5741,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3991,4.1902,-0.5542) mvmt=(0.1799,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.310,93.466) lpos=(-10.399,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3991,4.1902,-0.5542) mvmt=(0.1799,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5741,0.0422,1.0710) mvmt=(0.1799,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4009,-0.1978,0.9660) mvmt=(0.1799,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4009,-2.4091,-0.3840) mvmt=(0.1799,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6091,-2.8789,2.4703) mvmt=(0.0706,0.1654,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3991,4.1902,-0.5342) mvmt=(0.1799,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3991,4.1902,-0.5542) mvmt=(0.1799,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.310,93.466) lpos=(-10.399,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3752,-0.5680) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.125,93.452) lpos=(-10.579,4.375,-0.568) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3752,-0.5680) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2272,1.0572) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0128,0.9522) mvmt=(-0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2241,-0.3978) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3684,-2.9718,2.4565) mvmt=(-0.1702,0.0726,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3752,-0.5480) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3752,-0.5680) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.125,93.452) lpos=(-10.579,4.375,-0.568) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3752,-0.5680) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2272,1.0572) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0128,0.9522) mvmt=(-0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2241,-0.3978) mvmt=(0.0000,0.1850,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3684,-2.9718,2.4565) mvmt=(-0.1702,0.0726,0.3214) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3752,-0.5480) mvmt=(0.0000,0.1850,0.3214) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4044,4.3712,-0.5720) mvmt=(0.1745,0.1810,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4044,4.3712,-0.5720) mvmt=(0.1745,0.1810,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.129,93.448) lpos=(-10.404,4.371,-0.572) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4044,4.3712,-0.5720) mvmt=(0.1745,0.1810,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5795,0.2232,1.0532) mvmt=(0.1745,0.1810,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3956,-0.0168,0.9482) mvmt=(0.1745,0.1810,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3956,-2.2281,-0.4018) mvmt=(0.1745,0.1810,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4405,-2.8128,2.4525) mvmt=(-0.0981,0.2316,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4044,4.3712,-0.5520) mvmt=(0.1745,0.1810,0.3174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.129,93.448) lpos=(-10.404,4.371,-0.572) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4044,4.1902,-0.8894) mvmt=(0.1745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.131) lpos=(-10.404,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5795,0.0422,0.7358) mvmt=(0.1745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4044,4.1902,-0.8894) mvmt=(0.1745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.131) lpos=(-10.404,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5795,0.0422,0.7358) mvmt=(0.1745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5795,0.0422,0.7358) out=(-0.5795,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4044,4.1902,-0.5542) mvmt=(0.1745,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.466) lpos=(-10.404,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4044,4.1902,-0.5542) mvmt=(0.1745,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5795,0.0422,1.0710) mvmt=(0.1745,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3956,-0.1978,0.9660) mvmt=(0.1745,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3956,-2.4091,-0.3840) mvmt=(0.1745,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6070,-2.8838,2.4703) mvmt=(0.0685,0.1605,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4044,4.1902,-0.5342) mvmt=(0.1745,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4044,4.1902,-0.5542) mvmt=(0.1745,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.466) lpos=(-10.404,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3741,-0.5692) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.126,93.451) lpos=(-10.579,4.374,-0.569) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3741,-0.5692) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2260,1.0560) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0140,0.9510) mvmt=(-0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2253,-0.3990) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3695,-2.9722,2.4553) mvmt=(-0.1691,0.0721,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3741,-0.5492) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3741,-0.5692) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.126,93.451) lpos=(-10.579,4.374,-0.569) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3741,-0.5692) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2260,1.0560) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0140,0.9510) mvmt=(-0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2253,-0.3990) mvmt=(0.0000,0.1839,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3695,-2.9722,2.4553) mvmt=(-0.1691,0.0721,0.3202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3741,-0.5492) mvmt=(0.0000,0.1839,0.3202) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4060,4.3696,-0.5736) mvmt=(0.1730,0.1794,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.3696,-0.5736) mvmt=(0.1730,0.1794,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.130,93.446) lpos=(-10.406,4.370,-0.574) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4060,4.3696,-0.5736) mvmt=(0.1730,0.1794,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.2216,1.0516) mvmt=(0.1730,0.1794,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3940,-0.0184,0.9466) mvmt=(0.1730,0.1794,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3940,-2.2297,-0.4034) mvmt=(0.1730,0.1794,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4414,-2.8148,2.4509) mvmt=(-0.0972,0.2295,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.3696,-0.5536) mvmt=(0.1730,0.1794,0.3158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.130,93.446) lpos=(-10.406,4.370,-0.574) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4060,4.1902,-0.8894) mvmt=(0.1730,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.310,93.131) lpos=(-10.406,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5810,0.0422,0.7358) mvmt=(0.1730,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.1902,-0.8894) mvmt=(0.1730,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.310,93.131) lpos=(-10.406,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5810,0.0422,0.7358) mvmt=(0.1730,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5810,0.0422,0.7358) out=(-0.5810,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4060,4.1902,-0.5542) mvmt=(0.1730,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.310,93.466) lpos=(-10.406,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4060,4.1902,-0.5542) mvmt=(0.1730,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=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.0422,1.0710) mvmt=(0.1730,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3940,-0.1978,0.9660) mvmt=(0.1730,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3940,-2.4091,-0.3840) mvmt=(0.1730,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6064,-2.8852,2.4703) mvmt=(0.0679,0.1591,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.1902,-0.5342) mvmt=(0.1730,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.1902,-0.5542) mvmt=(0.1730,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.310,93.466) lpos=(-10.406,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3846,-0.5586) mvmt=(0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.115,93.461) lpos=(-10.579,4.385,-0.559) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3846,-0.5586) mvmt=(0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2366,1.0666) mvmt=(0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0034,0.9616) mvmt=(-0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2147,-0.3884) mvmt=(-0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3597,-2.9681,2.4659) mvmt=(-0.1788,0.0763,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3846,-0.5386) mvmt=(0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3846,-0.5586) mvmt=(0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.115,93.461) lpos=(-10.579,4.385,-0.559) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3846,-0.5586) mvmt=(0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2366,1.0666) mvmt=(0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0034,0.9616) mvmt=(-0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2147,-0.3884) mvmt=(-0.0000,0.1944,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3597,-2.9681,2.4659) mvmt=(-0.1788,0.0763,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3846,-0.5386) mvmt=(0.0000,0.1944,0.3308) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4040,4.3717,-0.5716) mvmt=(0.1749,0.1815,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4040,4.3717,-0.5716) mvmt=(0.1749,0.1815,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.128,93.448) lpos=(-10.404,4.372,-0.572) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4040,4.3717,-0.5716) mvmt=(0.1749,0.1815,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5790,0.2236,1.0536) mvmt=(0.1749,0.1815,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3960,-0.0164,0.9486) mvmt=(0.1749,0.1815,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3960,-2.2276,-0.4014) mvmt=(0.1749,0.1815,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4403,-2.8123,2.4529) mvmt=(-0.0983,0.2321,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4040,4.3717,-0.5516) mvmt=(0.1749,0.1815,0.3178) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.128,93.448) lpos=(-10.404,4.372,-0.572) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4040,4.1902,-0.8894) mvmt=(0.1749,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.131) lpos=(-10.404,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5790,0.0422,0.7358) mvmt=(0.1749,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4040,4.1902,-0.8894) mvmt=(0.1749,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.131) lpos=(-10.404,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5790,0.0422,0.7358) mvmt=(0.1749,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5790,0.0422,0.7358) out=(-0.5790,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4040,4.1902,-0.5542) mvmt=(0.1749,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.466) lpos=(-10.404,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4040,4.1902,-0.5542) mvmt=(0.1749,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5790,0.0422,1.0710) mvmt=(0.1749,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3960,-0.1978,0.9660) mvmt=(0.1749,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3960,-2.4091,-0.3840) mvmt=(0.1749,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6072,-2.8835,2.4703) mvmt=(0.0686,0.1609,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4040,4.1902,-0.5342) mvmt=(0.1749,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4040,4.1902,-0.5542) mvmt=(0.1749,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.904,7.310,93.466) lpos=(-10.404,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3702,-0.5730) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.130,93.447) lpos=(-10.579,4.370,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3702,-0.5730) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2222,1.0522) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0178,0.9472) mvmt=(-0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2291,-0.4028) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3730,-2.9737,2.4515) mvmt=(-0.1656,0.0706,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3702,-0.5530) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3702,-0.5730) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.130,93.447) lpos=(-10.579,4.370,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3702,-0.5730) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2222,1.0522) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0178,0.9472) mvmt=(-0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2291,-0.4028) mvmt=(0.0000,0.1800,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3730,-2.9737,2.4515) mvmt=(-0.1656,0.0706,0.3164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3702,-0.5530) mvmt=(0.0000,0.1800,0.3164) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4066,4.3690,-0.5742) mvmt=(0.1724,0.1788,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.3690,-0.5742) mvmt=(0.1724,0.1788,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.131,93.446) lpos=(-10.407,4.369,-0.574) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4066,4.3690,-0.5742) mvmt=(0.1724,0.1788,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.2210,1.0510) mvmt=(0.1724,0.1788,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3934,-0.0190,0.9460) mvmt=(0.1724,0.1788,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3934,-2.2303,-0.4040) mvmt=(0.1724,0.1788,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4417,-2.8157,2.4503) mvmt=(-0.0968,0.2287,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.3690,-0.5542) mvmt=(0.1724,0.1788,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.131,93.446) lpos=(-10.407,4.369,-0.574) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4066,4.1902,-0.8894) mvmt=(0.1724,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.131) lpos=(-10.407,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5816,0.0422,0.7358) mvmt=(0.1724,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.1902,-0.8894) mvmt=(0.1724,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.131) lpos=(-10.407,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5816,0.0422,0.7358) mvmt=(0.1724,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5816,0.0422,0.7358) out=(-0.5816,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4066,4.1902,-0.5542) mvmt=(0.1724,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.466) lpos=(-10.407,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4066,4.1902,-0.5542) mvmt=(0.1724,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=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.0422,1.0710) mvmt=(0.1724,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3934,-0.1978,0.9660) mvmt=(0.1724,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3934,-2.4091,-0.3840) mvmt=(0.1724,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6062,-2.8858,2.4703) mvmt=(0.0676,0.1585,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.1902,-0.5342) mvmt=(0.1724,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.1902,-0.5542) mvmt=(0.1724,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.466) lpos=(-10.407,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3704,-0.5728) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.130,93.447) lpos=(-10.579,4.370,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3704,-0.5728) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2224,1.0524) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0176,0.9474) mvmt=(-0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2289,-0.4026) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3728,-2.9737,2.4517) mvmt=(-0.1658,0.0707,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3704,-0.5528) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3704,-0.5728) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.130,93.447) lpos=(-10.579,4.370,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3704,-0.5728) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2224,1.0524) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0176,0.9474) mvmt=(-0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2289,-0.4026) mvmt=(0.0000,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3728,-2.9737,2.4517) mvmt=(-0.1658,0.0707,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3704,-0.5528) mvmt=(0.0000,0.1802,0.3166) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4053,4.3704,-0.5729) mvmt=(0.1737,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4053,4.3704,-0.5729) mvmt=(0.1737,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.130,93.447) lpos=(-10.405,4.370,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4053,4.3704,-0.5729) mvmt=(0.1737,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5803,0.2223,1.0523) mvmt=(0.1737,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3947,-0.0177,0.9473) mvmt=(0.1737,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3947,-2.2289,-0.4027) mvmt=(0.1737,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4410,-2.8139,2.4516) mvmt=(-0.0976,0.2305,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4053,4.3704,-0.5529) mvmt=(0.1737,0.1802,0.3166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.130,93.447) lpos=(-10.405,4.370,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4053,4.1902,-0.8894) mvmt=(0.1737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.310,93.131) lpos=(-10.405,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5803,0.0422,0.7358) mvmt=(0.1737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4053,4.1902,-0.8894) mvmt=(0.1737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.310,93.131) lpos=(-10.405,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5803,0.0422,0.7358) mvmt=(0.1737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5803,0.0422,0.7358) out=(-0.5803,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4053,4.1902,-0.5542) mvmt=(0.1737,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.310,93.466) lpos=(-10.405,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4053,4.1902,-0.5542) mvmt=(0.1737,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5803,0.0422,1.0710) mvmt=(0.1737,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3947,-0.1978,0.9660) mvmt=(0.1737,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3947,-2.4091,-0.3840) mvmt=(0.1737,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6067,-2.8846,2.4703) mvmt=(0.0681,0.1598,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4053,4.1902,-0.5342) mvmt=(0.1737,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4053,4.1902,-0.5542) mvmt=(0.1737,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.310,93.466) lpos=(-10.405,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3733,-0.5700) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.127,93.450) lpos=(-10.579,4.373,-0.570) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3733,-0.5700) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2252,1.0552) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0148,0.9502) mvmt=(-0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2260,-0.3998) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3702,-2.9725,2.4545) mvmt=(-0.1684,0.0718,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3733,-0.5500) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3733,-0.5700) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.127,93.450) lpos=(-10.579,4.373,-0.570) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3733,-0.5700) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2252,1.0552) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0148,0.9502) mvmt=(-0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2260,-0.3998) mvmt=(0.0000,0.1831,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3702,-2.9725,2.4545) mvmt=(-0.1684,0.0718,0.3195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3733,-0.5500) mvmt=(0.0000,0.1831,0.3195) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4067,4.3689,-0.5744) mvmt=(0.1722,0.1787,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4067,4.3689,-0.5744) mvmt=(0.1722,0.1787,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.131,93.446) lpos=(-10.407,4.369,-0.574) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4067,4.3689,-0.5744) mvmt=(0.1722,0.1787,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5817,0.2208,1.0508) mvmt=(0.1722,0.1787,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3933,-0.0192,0.9458) mvmt=(0.1722,0.1787,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3933,-2.2304,-0.4042) mvmt=(0.1722,0.1787,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4418,-2.8158,2.4501) mvmt=(-0.0968,0.2285,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4067,4.3689,-0.5544) mvmt=(0.1722,0.1787,0.3150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.131,93.446) lpos=(-10.407,4.369,-0.574) lprev=(-10.579,4.190,-0.889) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4067,4.1902,-0.8894) mvmt=(0.1722,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.131) lpos=(-10.407,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5817,0.0422,0.7358) mvmt=(0.1722,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4067,4.1902,-0.8894) mvmt=(0.1722,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.131) lpos=(-10.407,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5817,0.0422,0.7358) mvmt=(0.1722,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5817,0.0422,0.7358) out=(-0.5817,0.0422,1.0710) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4067,4.1902,-0.5542) mvmt=(0.1722,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.466) lpos=(-10.407,4.190,-0.554) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4067,4.1902,-0.5542) mvmt=(0.1722,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5817,0.0422,1.0710) mvmt=(0.1722,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3933,-0.1978,0.9660) mvmt=(0.1722,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.3933,-2.4091,-0.3840) mvmt=(0.1722,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6061,-2.8859,2.4703) mvmt=(0.0676,0.1584,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4067,4.1902,-0.5342) mvmt=(0.1722,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.4067,4.1902,-0.5542) mvmt=(0.1722,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.310,93.466) lpos=(-10.407,4.190,-0.554) lprev=(-10.579,4.190,-0.889) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5790,4.3705,-0.5727) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.129,93.447) lpos=(-10.579,4.371,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3705,-0.5727) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2225,1.0525) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0175,0.9475) mvmt=(-0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2288,-0.4025) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3727,-2.9736,2.4518) mvmt=(-0.1659,0.0707,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3705,-0.5527) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3705,-0.5727) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.129,93.447) lpos=(-10.579,4.371,-0.573) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5790,4.3705,-0.5727) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7540,0.2225,1.0525) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-0.0175,0.9475) mvmt=(-0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2210,-2.2288,-0.4025) mvmt=(0.0000,0.1803,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3727,-2.9736,2.4518) mvmt=(-0.1659,0.0707,0.3167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5790,4.3705,-0.5527) mvmt=(0.0000,0.1803,0.3167) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[push-back-disp] site=dispatch center=(-10.4633,4.4302,-0.6589) mvmt=(0.1157,0.2400,0.2305) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.070,93.361) lpos=(-10.463,4.430,-0.659) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.4302,-0.6589) mvmt=(0.1157,0.2400,0.2305) 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.6383,0.2822,0.9663) mvmt=(0.1157,0.2400,0.2305) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0422,0.8613) mvmt=(0.1157,0.2400,0.2305) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.4302,-0.6589) mvmt=(0.1157,0.2400,0.2305) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.070,93.361) lpos=(-10.463,4.430,-0.659) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.4302,-0.6589) mvmt=(0.1157,0.2400,0.2305) 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.6383,0.2822,0.9663) mvmt=(0.1157,0.2400,0.2305) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0422,0.8613) mvmt=(0.1157,0.2400,0.2305) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,0.0422,0.8613) out=(0.2210,-0.1978,0.6308) delta=(-0.1157,-0.2400,-0.2305) deltaMag=0.3523 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.4676 dpMove=-0.0124 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.5790,4.1902,-0.8894) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.310,93.131) lpos=(-10.579,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.0422,0.7358) 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.2210,-0.1978,0.6308) 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.2210,-2.4091,-0.7192) 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.5790,4.1902,-0.8694) 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.5790,4.1902,-0.8894) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.310,93.131) lpos=(-10.579,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7540,0.0422,0.7358) 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.2210,-0.1978,0.6308) 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.2210,-2.4091,-0.7192) 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.5790,4.1902,-0.8694) 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.4633,4.4213,-0.6503) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.079,93.370) lpos=(-10.463,4.421,-0.650) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.4213,-0.6503) mvmt=(0.1157,0.2311,0.2391) 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.6383,0.2733,0.9749) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0333,0.8699) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.1780,-0.4801) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3714,-2.8472,2.3742) mvmt=(-0.1672,0.1971,0.2391) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.4213,-0.6303) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.4213,-0.6503) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.079,93.370) lpos=(-10.463,4.421,-0.650) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.4213,-0.6503) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6383,0.2733,0.9749) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0333,0.8699) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.1780,-0.4801) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3714,-2.8472,2.3742) mvmt=(-0.1672,0.1971,0.2391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.4213,-0.6303) mvmt=(0.1157,0.2311,0.2391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1902,-0.8894) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.131) lpos=(-10.463,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0422,0.7358) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1978,0.6308) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4091,-0.7192) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1902,-0.8694) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1902,-1.6394) mvmt=(0.1157,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,92.381) lpos=(-10.463,4.190,-1.639) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0422,-0.0142) mvmt=(0.1157,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1978,-0.1192) mvmt=(0.1157,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,-0.1978,-0.1192) out=(0.3367,-0.1978,0.6308) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4633,4.1902,-0.8894) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.131) lpos=(-10.463,4.190,-0.889) lprev=(-10.579,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0422,0.7358) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1978,0.6308) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4091,-0.7192) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1902,-0.8694) mvmt=(0.1157,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3763,4.3707,-0.7226) mvmt=(0.0870,0.1805,0.1668) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.129,93.297) lpos=(-10.376,4.371,-0.723) lprev=(-10.463,4.190,-0.889) r=0.480 result=Slid n=(0.000,0.000,-1.000) sides=Landblock +[push-back-disp] site=dispatch center=(-10.3763,4.3707,-0.8894) mvmt=(0.0870,0.1805,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.129,93.131) lpos=(-10.376,4.371,-0.889) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5513,0.2227,0.7358) mvmt=(0.0870,0.1805,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3707,-0.8894) mvmt=(0.0000,0.1805,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.129,93.131) lpos=(-10.463,4.371,-0.889) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2227,0.7358) mvmt=(0.0000,0.1805,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3707,-0.7226) mvmt=(0.0000,0.1805,0.1668) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.129,93.297) lpos=(-10.463,4.371,-0.723) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2227,0.9026) mvmt=(0.0000,0.1805,0.1668) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0173,0.7976) mvmt=(0.0000,0.1805,0.1668) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,-0.0173,0.7976) out=(0.3367,-0.1979,0.6308) delta=(0.0000,-0.1805,-0.1668) deltaMag=0.2458 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0002 dpPos=0.4662 dpMove=-0.0138 iDist=1.0002 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.4633,4.1902,-0.8895) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.131) lpos=(-10.463,4.190,-0.889) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0421,0.7357) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1979,0.6308) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4091,-0.7193) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1902,-0.8695) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1902,-0.8895) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.131) lpos=(-10.463,4.190,-0.889) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0421,0.7357) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1979,0.6308) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4091,-0.7193) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1902,-0.8695) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3929,-0.7088) mvmt=(0.0000,0.2028,0.1807) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.107,93.311) lpos=(-10.463,4.393,-0.709) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2449,0.9164) mvmt=(0.0000,0.2028,0.1807) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0049,0.8114) mvmt=(0.0000,0.2028,0.1807) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3929,-0.7088) mvmt=(0.0000,0.2028,0.1807) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.107,93.311) lpos=(-10.463,4.393,-0.709) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2449,0.9164) mvmt=(0.0000,0.2028,0.1807) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0049,0.8114) mvmt=(0.0000,0.2028,0.1807) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,0.0049,0.8114) out=(0.3367,-0.1980,0.6307) delta=(0.0000,-0.2028,-0.1808) deltaMag=0.2717 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0004 dpPos=0.4598 dpMove=-0.0202 iDist=1.0004 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.4633,4.1901,-0.8895) mvmt=(0.0000,-0.0001,-0.0001) collide=True insertType=0 objState=0x300 winterp=-0.0004 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7357) mvmt=(0.0000,-0.0001,-0.0001) collide=True insertType=0 objState=0x300 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6307) mvmt=(0.0000,-0.0001,-0.0001) collide=True insertType=0 objState=0x300 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4092,-0.7193) mvmt=(0.0000,-0.0001,-0.0001) collide=True insertType=0 objState=0x300 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1901,-0.8695) mvmt=(0.0000,-0.0001,-0.0001) collide=True insertType=0 objState=0x300 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1901,-0.8895) mvmt=(0.0000,-0.0001,-0.0001) collide=False insertType=1 objState=0x300 winterp=-0.0004 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.889) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7357) mvmt=(0.0000,-0.0001,-0.0001) collide=False insertType=1 objState=0x300 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6307) mvmt=(0.0000,-0.0001,-0.0001) collide=False insertType=1 objState=0x300 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4092,-0.7193) mvmt=(0.0000,-0.0001,-0.0001) collide=False insertType=1 objState=0x300 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1901,-0.8695) mvmt=(0.0000,-0.0001,-0.0001) collide=False insertType=1 objState=0x300 winterp=-0.0004 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3655,4.3783,-0.6948) mvmt=(0.0977,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=-0.0004 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.3783,-0.6948) mvmt=(0.0977,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.122,93.325) lpos=(-10.366,4.378,-0.695) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3655,4.3783,-0.6948) mvmt=(0.0977,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5405,0.2303,0.9304) mvmt=(0.0977,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5405,0.2303,0.9304) out=(-0.5405,0.2303,1.2591) delta=(0.0000,0.0000,0.3287) deltaMag=0.3287 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4522 dpPos=0.2476 dpMove=-0.4243 iDist=0.5478 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.3655,4.3783,-0.3661) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.122,93.654) lpos=(-10.366,4.378,-0.366) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3655,4.3783,-0.3661) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 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.3655,4.3783,-0.3661) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5405,0.2303,1.2591) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-0.0097,1.1541) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-2.2210,-0.1959) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[push-back-disp] site=dispatch center=(0.4493,-2.7742,2.6584) mvmt=(-0.1348,0.1637,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.3783,-0.3461) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.3783,-0.3661) mvmt=(0.0977,0.1882,0.5234) collide=False insertType=1 objState=0x303 winterp=0.4522 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.122,93.654) lpos=(-10.366,4.378,-0.366) lprev=(-10.463,4.190,-0.890) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.122,93.325) lpos=(-10.366,4.378,-0.695) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3655,4.1901,-0.8895) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.130) lpos=(-10.366,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5405,0.0420,0.7357) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4522 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.1901,-0.8895) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.130) lpos=(-10.366,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5405,0.0420,0.7357) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5405,0.0420,0.7357) out=(-0.5405,0.0420,1.0709) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3655,4.1901,-0.5543) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.466) lpos=(-10.366,4.190,-0.554) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3655,4.1901,-0.5543) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5405,0.0420,1.0709) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-0.1980,0.9659) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-2.4092,-0.3841) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6224,-2.8481,2.4702) mvmt=(0.0383,0.0899,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.1901,-0.5343) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.1901,-0.5543) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.466) lpos=(-10.366,4.190,-0.554) lprev=(-10.463,4.190,-0.890) 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 +[push-back-disp] site=dispatch center=(-10.4633,4.3690,-0.7360) mvmt=(0.0000,0.1789,0.1536) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.131,93.284) lpos=(-10.463,4.369,-0.736) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2210,0.8892) mvmt=(0.0000,0.1789,0.1536) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0190,0.7842) mvmt=(0.0000,0.1789,0.1536) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3690,-0.7360) mvmt=(0.0000,0.1789,0.1536) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.131,93.284) lpos=(-10.463,4.369,-0.736) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2210,0.8892) mvmt=(0.0000,0.1789,0.1536) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0190,0.7842) mvmt=(0.0000,0.1789,0.1536) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,-0.0190,0.7842) out=(0.3367,-0.1979,0.6307) delta=(0.0000,-0.1789,-0.1536) deltaMag=0.2358 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.4581 dpMove=-0.0219 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.4633,4.1901,-0.8895) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0421,0.7357) 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.3367,-0.1979,0.6307) 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.3367,-2.4092,-0.7193) 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.4633,4.1901,-0.8695) 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.4633,4.1901,-0.8895) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0421,0.7357) 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.3367,-0.1979,0.6307) 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.3367,-2.4092,-0.7193) 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.4633,4.1901,-0.8695) 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.3770,4.3533,-0.7207) mvmt=(0.0862,0.1632,0.1688) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3770,4.3533,-0.7207) mvmt=(0.0862,0.1632,0.1688) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.147,93.299) lpos=(-10.377,4.353,-0.721) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5520,0.2052,0.9045) mvmt=(0.0862,0.1632,0.1688) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5520,0.2052,0.9045) out=(-0.5520,0.2052,1.2340) 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.2470 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.3770,4.3533,-0.3912) mvmt=(0.0862,0.1632,0.4984) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.147,93.629) lpos=(-10.377,4.353,-0.391) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3770,4.3533,-0.3912) mvmt=(0.0862,0.1632,0.4984) 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.3770,4.3533,-0.3912) mvmt=(0.0862,0.1632,0.4984) 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.5520,0.2052,1.2340) mvmt=(0.0862,0.1632,0.4984) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.4230,-0.0348,1.1291) mvmt=(0.0862,0.1632,0.4984) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.4230,-2.2460,-0.2210) mvmt=(0.0862,0.1632,0.4984) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.4678,-2.7946,2.6333) mvmt=(-0.1163,0.1433,0.4984) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.3770,4.3533,-0.3712) mvmt=(0.0862,0.1632,0.4984) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.3770,4.3533,-0.3912) mvmt=(0.0862,0.1632,0.4984) collide=False insertType=1 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.147,93.629) lpos=(-10.377,4.353,-0.391) lprev=(-10.463,4.190,-0.890) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.147,93.299) lpos=(-10.377,4.353,-0.721) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3770,4.1901,-0.8895) mvmt=(0.0862,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.130) lpos=(-10.377,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5520,0.0421,0.7357) mvmt=(0.0862,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.3770,4.1901,-0.8895) mvmt=(0.0862,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.130) lpos=(-10.377,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5520,0.0421,0.7357) mvmt=(0.0862,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5520,0.0421,0.7357) out=(-0.5520,0.0421,1.0709) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3770,4.1901,-0.5543) mvmt=(0.0862,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.466) lpos=(-10.377,4.190,-0.554) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3770,4.1901,-0.5543) mvmt=(0.0862,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5520,0.0421,1.0709) mvmt=(0.0862,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4230,-0.1979,0.9659) mvmt=(0.0862,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4230,-2.4092,-0.3841) mvmt=(0.0862,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6179,-2.8586,2.4702) mvmt=(0.0338,0.0793,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3770,4.1901,-0.5343) mvmt=(0.0862,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3770,4.1901,-0.5543) mvmt=(0.0862,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.466) lpos=(-10.377,4.190,-0.554) lprev=(-10.463,4.190,-0.890) 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 +[push-back-disp] site=dispatch center=(-10.4633,4.3723,-0.7388) mvmt=(0.0000,0.1822,0.1507) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.128,93.281) lpos=(-10.463,4.372,-0.739) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2243,0.8864) mvmt=(0.0000,0.1822,0.1507) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0157,0.7814) mvmt=(0.0000,0.1822,0.1507) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3723,-0.7388) mvmt=(0.0000,0.1822,0.1507) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.128,93.281) lpos=(-10.463,4.372,-0.739) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2243,0.8864) mvmt=(0.0000,0.1822,0.1507) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0157,0.7814) mvmt=(0.0000,0.1822,0.1507) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,-0.0157,0.7814) out=(0.3367,-0.1980,0.6306) delta=(0.0000,-0.1822,-0.1508) deltaMag=0.2365 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0002 dpPos=0.4537 dpMove=-0.0262 iDist=1.0002 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.4633,4.1901,-0.8896) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4092,-0.7194) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1901,-0.8696) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1901,-0.8896) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4092,-0.7194) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1901,-0.8696) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3754,4.3534,-0.7206) mvmt=(0.0878,0.1633,0.1690) collide=False insertType=0 objState=0x303 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.3754,4.3534,-0.7206) mvmt=(0.0878,0.1633,0.1690) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.147,93.299) lpos=(-10.375,4.353,-0.721) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5504,0.2054,0.9046) mvmt=(0.0878,0.1633,0.1690) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5504,0.2054,0.9046) out=(-0.5504,0.2054,1.2342) 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.2470 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.3754,4.3534,-0.3910) mvmt=(0.0878,0.1633,0.4986) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.147,93.629) lpos=(-10.375,4.353,-0.391) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3754,4.3534,-0.3910) mvmt=(0.0878,0.1633,0.4986) 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.3754,4.3534,-0.3910) mvmt=(0.0878,0.1633,0.4986) 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.5504,0.2054,1.2342) mvmt=(0.0878,0.1633,0.4986) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.4246,-0.0346,1.1292) mvmt=(0.0878,0.1633,0.4986) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.4246,-2.2459,-0.2208) mvmt=(0.0878,0.1633,0.4986) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.4683,-2.7931,2.6335) mvmt=(-0.1158,0.1449,0.4986) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.3754,4.3534,-0.3710) mvmt=(0.0878,0.1633,0.4986) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.3754,4.3534,-0.3910) mvmt=(0.0878,0.1633,0.4986) collide=False insertType=1 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.147,93.629) lpos=(-10.375,4.353,-0.391) lprev=(-10.463,4.190,-0.890) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.147,93.299) lpos=(-10.375,4.353,-0.721) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3754,4.1901,-0.8896) mvmt=(0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.310,93.130) lpos=(-10.375,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5504,0.0420,0.7356) mvmt=(0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.3754,4.1901,-0.8896) mvmt=(0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.310,93.130) lpos=(-10.375,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5504,0.0420,0.7356) mvmt=(0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5504,0.0420,0.7356) out=(-0.5504,0.0420,1.0708) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3754,4.1901,-0.5544) mvmt=(0.0878,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.310,93.466) lpos=(-10.375,4.190,-0.554) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3754,4.1901,-0.5544) mvmt=(0.0878,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5504,0.0420,1.0708) mvmt=(0.0878,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4246,-0.1980,0.9659) mvmt=(0.0878,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4246,-2.4092,-0.3842) mvmt=(0.0878,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6185,-2.8572,2.4701) mvmt=(0.0345,0.0808,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3754,4.1901,-0.5344) mvmt=(0.0878,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3754,4.1901,-0.5544) mvmt=(0.0878,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.875,7.310,93.466) lpos=(-10.375,4.190,-0.554) lprev=(-10.463,4.190,-0.890) 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 +[push-back-disp] site=dispatch center=(-10.4633,4.3704,-0.7460) mvmt=(0.0000,0.1803,0.1436) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.130,93.274) lpos=(-10.463,4.370,-0.746) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2224,0.8792) mvmt=(0.0000,0.1803,0.1436) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0176,0.7742) mvmt=(0.0000,0.1803,0.1436) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3704,-0.7460) mvmt=(0.0000,0.1803,0.1436) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.130,93.274) lpos=(-10.463,4.370,-0.746) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2224,0.8792) mvmt=(0.0000,0.1803,0.1436) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0176,0.7742) mvmt=(0.0000,0.1803,0.1436) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,-0.0176,0.7742) out=(0.3367,-0.1980,0.6306) delta=(0.0000,-0.1804,-0.1436) deltaMag=0.2306 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0002 dpPos=0.4501 dpMove=-0.0299 iDist=1.0002 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0002 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3763,4.3489,-0.7253) mvmt=(0.0869,0.1589,0.1643) collide=False insertType=0 objState=0x303 winterp=-0.0002 return=-1 +[push-back-disp] site=dispatch center=(-10.3763,4.3489,-0.7253) mvmt=(0.0869,0.1589,0.1643) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.151,93.295) lpos=(-10.376,4.349,-0.725) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5513,0.2008,0.8999) mvmt=(0.0869,0.1589,0.1643) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5513,0.2008,0.8999) out=(-0.5513,0.2008,1.2297) 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.3763,4.3489,-0.3955) mvmt=(0.0869,0.1589,0.4940) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.151,93.624) lpos=(-10.376,4.349,-0.396) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3763,4.3489,-0.3955) mvmt=(0.0869,0.1589,0.4940) 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.3763,4.3489,-0.3955) mvmt=(0.0869,0.1589,0.4940) 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.5513,0.2008,1.2297) mvmt=(0.0869,0.1589,0.4940) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(0.4237,-0.0392,1.1247) mvmt=(0.0869,0.1589,0.4940) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(0.4237,-2.2504,-0.2253) mvmt=(0.0869,0.1589,0.4940) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(0.4721,-2.7957,2.6290) mvmt=(-0.1120,0.1423,0.4940) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(-10.3763,4.3489,-0.3755) mvmt=(0.0869,0.1589,0.4940) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(-10.3763,4.3489,-0.3955) mvmt=(0.0869,0.1589,0.4940) collide=False insertType=1 objState=0x303 winterp=0.4505 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.151,93.624) lpos=(-10.376,4.349,-0.396) lprev=(-10.463,4.190,-0.890) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.151,93.295) lpos=(-10.376,4.349,-0.725) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3763,4.1900,-0.8896) mvmt=(0.0869,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.310,93.130) lpos=(-10.376,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5513,0.0420,0.7356) mvmt=(0.0869,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(-10.3763,4.1900,-0.8896) mvmt=(0.0869,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.310,93.130) lpos=(-10.376,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5513,0.0420,0.7356) mvmt=(0.0869,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5513,0.0420,0.7356) out=(-0.5513,0.0420,1.0708) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3763,4.1900,-0.5544) mvmt=(0.0869,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.310,93.466) lpos=(-10.376,4.190,-0.554) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3763,4.1900,-0.5544) mvmt=(0.0869,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5513,0.0420,1.0708) mvmt=(0.0869,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4237,-0.1980,0.9658) mvmt=(0.0869,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4237,-2.4093,-0.3842) mvmt=(0.0869,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6182,-2.8580,2.4701) mvmt=(0.0341,0.0799,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3763,4.1900,-0.5344) mvmt=(0.0869,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3763,4.1900,-0.5544) mvmt=(0.0869,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.310,93.466) lpos=(-10.376,4.190,-0.554) lprev=(-10.463,4.190,-0.890) 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 +[push-back-disp] site=dispatch center=(-10.4633,4.3692,-0.7525) mvmt=(0.0000,0.1791,0.1370) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.131,93.267) lpos=(-10.463,4.369,-0.753) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2211,0.8727) mvmt=(0.0000,0.1791,0.1370) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0189,0.7677) mvmt=(0.0000,0.1791,0.1370) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3692,-0.7525) mvmt=(0.0000,0.1791,0.1370) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.131,93.267) lpos=(-10.463,4.369,-0.753) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2211,0.8727) mvmt=(0.0000,0.1791,0.1370) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.0189,0.7677) mvmt=(0.0000,0.1791,0.1370) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,-0.0189,0.7677) out=(0.3367,-0.1980,0.6306) delta=(0.0000,-0.1791,-0.1370) deltaMag=0.2255 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0001 dpPos=0.4465 dpMove=-0.0335 iDist=0.9999 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3769,4.3451,-0.7292) mvmt=(0.0863,0.1550,0.1604) collide=False insertType=0 objState=0x303 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.3769,4.3451,-0.7292) mvmt=(0.0863,0.1550,0.1604) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.155,93.291) lpos=(-10.377,4.345,-0.729) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5519,0.1970,0.8960) mvmt=(0.0863,0.1550,0.1604) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5519,0.1970,0.8960) out=(-0.5519,0.1970,1.2258) delta=(0.0000,0.0000,0.3299) deltaMag=0.3299 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4502 dpPos=0.2468 dpMove=-0.4243 iDist=0.5498 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.3769,4.3451,-0.3994) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.155,93.621) lpos=(-10.377,4.345,-0.399) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3769,4.3451,-0.3994) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 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.3769,4.3451,-0.3994) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5519,0.1970,1.2258) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[push-back-disp] site=dispatch center=(0.4231,-0.0430,1.1208) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[push-back-disp] site=dispatch center=(0.4231,-2.2543,-0.2292) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[push-back-disp] site=dispatch center=(0.4754,-2.7978,2.6251) mvmt=(-0.1087,0.1402,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[push-back-disp] site=dispatch center=(-10.3769,4.3451,-0.3794) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[push-back-disp] site=dispatch center=(-10.3769,4.3451,-0.3994) mvmt=(0.0863,0.1550,0.4902) collide=False insertType=1 objState=0x303 winterp=0.4502 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.155,93.621) lpos=(-10.377,4.345,-0.399) lprev=(-10.463,4.190,-0.890) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.155,93.291) lpos=(-10.377,4.345,-0.729) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3769,4.1900,-0.8896) mvmt=(0.0863,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.130) lpos=(-10.377,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5519,0.0420,0.7356) mvmt=(0.0863,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4502 return=-1 +[push-back-disp] site=dispatch center=(-10.3769,4.1900,-0.8896) mvmt=(0.0863,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.130) lpos=(-10.377,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5519,0.0420,0.7356) mvmt=(0.0863,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5519,0.0420,0.7356) out=(-0.5519,0.0420,1.0708) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3769,4.1900,-0.5544) mvmt=(0.0863,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.466) lpos=(-10.377,4.190,-0.554) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3769,4.1900,-0.5544) mvmt=(0.0863,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5519,0.0420,1.0708) mvmt=(0.0863,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4231,-0.1980,0.9658) mvmt=(0.0863,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4231,-2.4093,-0.3842) mvmt=(0.0863,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6180,-2.8586,2.4701) mvmt=(0.0339,0.0794,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3769,4.1900,-0.5344) mvmt=(0.0863,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3769,4.1900,-0.5544) mvmt=(0.0863,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.877,7.310,93.466) lpos=(-10.377,4.190,-0.554) lprev=(-10.463,4.190,-0.890) 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 +[push-back-disp] site=dispatch center=(-10.4633,4.5469,-0.6275) mvmt=(0.0000,0.3569,0.2621) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,6.953,93.392) lpos=(-10.463,4.547,-0.628) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.5469,-0.6275) mvmt=(0.0000,0.3569,0.2621) 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.6383,0.3989,0.9977) mvmt=(0.0000,0.3569,0.2621) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.1589,0.8927) mvmt=(0.0000,0.3569,0.2621) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.5469,-0.6275) mvmt=(0.0000,0.3569,0.2621) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,6.953,93.392) lpos=(-10.463,4.547,-0.628) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.5469,-0.6275) mvmt=(0.0000,0.3569,0.2621) 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.6383,0.3989,0.9977) mvmt=(0.0000,0.3569,0.2621) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.1589,0.8927) mvmt=(0.0000,0.3569,0.2621) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,0.1589,0.8927) out=(0.3367,-0.1980,0.6306) delta=(0.0000,-0.3569,-0.2621) deltaMag=0.4428 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.4056 dpMove=-0.0744 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.3663,4.3912,-0.7485) mvmt=(0.0969,0.2011,0.1411) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.109,93.272) lpos=(-10.366,4.391,-0.748) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid n=(0.000,0.000,-1.000) sides=Landblock +[push-back-disp] site=dispatch center=(-10.3663,4.3912,-0.8896) mvmt=(0.0969,0.2011,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.109,93.130) lpos=(-10.366,4.391,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5413,0.2431,0.7356) mvmt=(0.0969,0.2011,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3912,-0.8896) mvmt=(0.0000,0.2011,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.109,93.130) lpos=(-10.463,4.391,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2431,0.7356) mvmt=(0.0000,0.2011,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3912,-0.7485) mvmt=(0.0000,0.2011,0.1411) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.109,93.272) lpos=(-10.463,4.391,-0.748) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2431,0.8767) mvmt=(0.0000,0.2011,0.1411) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0031,0.7717) mvmt=(0.0000,0.2011,0.1411) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,0.0031,0.7717) out=(0.3367,-0.1980,0.6306) delta=(0.0000,-0.2011,-0.1411) deltaMag=0.2457 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0001 dpPos=0.4335 dpMove=-0.0465 iDist=0.9999 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3928,-0.7544) mvmt=(0.0000,0.2027,0.1352) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.107,93.266) lpos=(-10.463,4.393,-0.754) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2447,0.8708) mvmt=(0.0000,0.2027,0.1352) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0047,0.7658) mvmt=(0.0000,0.2027,0.1352) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.3928,-0.7544) mvmt=(0.0000,0.2027,0.1352) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.107,93.266) lpos=(-10.463,4.393,-0.754) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.2447,0.8708) mvmt=(0.0000,0.2027,0.1352) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.0047,0.7658) mvmt=(0.0000,0.2027,0.1352) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,0.0047,0.7658) out=(0.3367,-0.1980,0.6306) delta=(0.0000,-0.2027,-0.1352) deltaMag=0.2437 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.4282 dpMove=-0.0518 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.3655,4.3555,-0.7184) mvmt=(0.0977,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.3555,-0.7184) mvmt=(0.0977,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.144,93.302) lpos=(-10.366,4.356,-0.718) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5405,0.2075,0.9068) mvmt=(0.0977,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5405,0.2075,0.9068) out=(-0.5405,0.2075,1.2363) delta=(0.0000,0.0000,0.3295) deltaMag=0.3295 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4508 dpPos=0.2470 dpMove=-0.4243 iDist=0.5492 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.3655,4.3555,-0.3889) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.144,93.631) lpos=(-10.366,4.356,-0.389) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3655,4.3555,-0.3889) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 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.3655,4.3555,-0.3889) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5405,0.2075,1.2363) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-0.0325,1.1313) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-2.2438,-0.2187) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[push-back-disp] site=dispatch center=(0.4702,-2.7832,2.6356) mvmt=(-0.1139,0.1548,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.3555,-0.3689) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.3555,-0.3889) mvmt=(0.0977,0.1655,0.5007) collide=False insertType=1 objState=0x303 winterp=0.4508 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.144,93.631) lpos=(-10.366,4.356,-0.389) lprev=(-10.463,4.190,-0.890) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.144,93.302) lpos=(-10.366,4.356,-0.718) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3655,4.1900,-0.8896) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.130) lpos=(-10.366,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5405,0.0420,0.7356) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4508 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.1900,-0.8896) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.130) lpos=(-10.366,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5405,0.0420,0.7356) mvmt=(0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5405,0.0420,0.7356) out=(-0.5405,0.0420,1.0708) delta=(0.0000,0.0000,0.3352) deltaMag=0.3352 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4413 dpPos=0.2430 dpMove=-0.4243 iDist=0.5587 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3655,4.1900,-0.5544) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.466) lpos=(-10.366,4.190,-0.554) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3655,4.1900,-0.5544) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5405,0.0420,1.0708) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-0.1980,0.9658) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.4345,-2.4093,-0.3842) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(0.6224,-2.8481,2.4701) mvmt=(0.0383,0.0899,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.1900,-0.5344) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=0 objState=0x303 winterp=0.4413 return=-1 +[push-back-disp] site=dispatch center=(-10.3655,4.1900,-0.5544) mvmt=(0.0977,0.0000,0.3352) collide=False insertType=1 objState=0x303 winterp=0.4413 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.866,7.310,93.466) lpos=(-10.366,4.190,-0.554) lprev=(-10.463,4.190,-0.890) 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 +[push-back-disp] site=dispatch center=(-10.4633,4.5516,-0.6604) mvmt=(0.0000,0.3615,0.2292) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,6.948,93.360) lpos=(-10.463,4.552,-0.660) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.5516,-0.6604) mvmt=(0.0000,0.3615,0.2292) 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.6383,0.4035,0.9648) mvmt=(0.0000,0.3615,0.2292) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.1635,0.8598) mvmt=(0.0000,0.3615,0.2292) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.5516,-0.6604) mvmt=(0.0000,0.3615,0.2292) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,6.948,93.360) lpos=(-10.463,4.552,-0.660) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4633,4.5516,-0.6604) mvmt=(0.0000,0.3615,0.2292) 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.6383,0.4035,0.9648) mvmt=(0.0000,0.3615,0.2292) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3367,0.1635,0.8598) mvmt=(0.0000,0.3615,0.2292) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3367,0.1635,0.8598) out=(0.3367,-0.1980,0.6306) delta=(0.0000,-0.3616,-0.2292) deltaMag=0.4281 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0001 dpPos=0.3793 dpMove=-0.1006 iDist=1.0001 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0001 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,-0.0000,-0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0001 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-0.1980,0.6306) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(0.3367,-2.4093,-0.7194) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.1900,-0.8696) mvmt=(0.0000,-0.0000,-0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0001 return=-1 +[push-back-disp] site=dispatch center=(-10.2917,4.5460,-0.6749) mvmt=(0.1716,0.3560,0.2147) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.792,6.954,93.345) lpos=(-10.292,4.546,-0.675) lprev=(-10.463,4.190,-0.890) r=0.480 result=Slid n=(0.000,0.000,-1.000) sides=Landblock +[push-back-disp] site=dispatch center=(-10.2917,4.5460,-0.8896) mvmt=(0.1716,0.3560,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.792,6.954,93.130) lpos=(-10.292,4.546,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4667,0.3980,0.7356) mvmt=(0.1716,0.3560,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4633,4.5460,-0.8896) mvmt=(0.0000,0.3560,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,6.954,93.130) lpos=(-10.463,4.546,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.3980,0.7356) mvmt=(0.0000,0.3560,0.0000) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4731,4.5983,-0.6568) mvmt=(-0.0098,0.4083,0.2328) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.902,93.363) lpos=(-10.473,4.598,-0.657) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4731,4.5983,-0.6568) mvmt=(-0.0098,0.4083,0.2328) 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.6481,0.4502,0.9684) mvmt=(-0.0098,0.4083,0.2328) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3269,0.2102,0.8634) mvmt=(-0.0098,0.4083,0.2328) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4731,4.5983,-0.6568) mvmt=(-0.0098,0.4083,0.2328) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.902,93.363) lpos=(-10.473,4.598,-0.657) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4731,4.5983,-0.6568) mvmt=(-0.0098,0.4083,0.2328) 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.6481,0.4502,0.9684) mvmt=(-0.0098,0.4083,0.2328) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3269,0.2102,0.8634) mvmt=(-0.0098,0.4083,0.2328) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3269,0.2102,0.8634) out=(0.3367,-0.1980,0.6306) delta=(0.0098,-0.4083,-0.2328) deltaMag=0.4701 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.3483 dpMove=-0.1317 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[input] MovementTurnLeft Press +[push-back-disp] site=dispatch center=(-10.4721,4.5569,-0.6926) mvmt=(-0.0088,0.3669,0.1970) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.943,93.327) lpos=(-10.472,4.557,-0.693) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4721,4.5569,-0.6926) mvmt=(-0.0088,0.3669,0.1970) 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.6471,0.4089,0.9326) mvmt=(-0.0088,0.3669,0.1970) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3279,0.1689,0.8276) mvmt=(-0.0088,0.3669,0.1970) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4721,4.5569,-0.6926) mvmt=(-0.0088,0.3669,0.1970) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.943,93.327) lpos=(-10.472,4.557,-0.693) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4721,4.5569,-0.6926) mvmt=(-0.0088,0.3669,0.1970) 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.6471,0.4089,0.9326) mvmt=(-0.0088,0.3669,0.1970) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3279,0.1689,0.8276) mvmt=(-0.0088,0.3669,0.1970) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3279,0.1689,0.8276) out=(0.3367,-0.1980,0.6306) delta=(0.0088,-0.3669,-0.1970) deltaMag=0.4165 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.3531 dpMove=-0.1269 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4722,4.5608,-0.7023) mvmt=(-0.0089,0.3707,0.1873) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.939,93.318) lpos=(-10.472,4.561,-0.702) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4127,0.9229) mvmt=(-0.0089,0.3707,0.1873) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3278,0.1727,0.8179) mvmt=(-0.0089,0.3707,0.1873) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4722,4.5608,-0.7023) mvmt=(-0.0089,0.3707,0.1873) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.939,93.318) lpos=(-10.472,4.561,-0.702) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4127,0.9229) mvmt=(-0.0089,0.3707,0.1873) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3278,0.1727,0.8179) mvmt=(-0.0089,0.3707,0.1873) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3278,0.1727,0.8179) out=(0.3367,-0.1980,0.6306) delta=(0.0089,-0.3708,-0.1873) deltaMag=0.4155 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.3436 dpMove=-0.1364 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4721,4.5560,-0.7163) mvmt=(-0.0088,0.3660,0.1733) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.944,93.304) lpos=(-10.472,4.556,-0.716) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6471,0.4080,0.9089) mvmt=(-0.0088,0.3660,0.1733) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3279,0.1680,0.8039) mvmt=(-0.0088,0.3660,0.1733) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4721,4.5560,-0.7163) mvmt=(-0.0088,0.3660,0.1733) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.944,93.304) lpos=(-10.472,4.556,-0.716) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6471,0.4080,0.9089) mvmt=(-0.0088,0.3660,0.1733) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3279,0.1680,0.8039) mvmt=(-0.0088,0.3660,0.1733) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3279,0.1680,0.8039) out=(0.3367,-0.1980,0.6306) delta=(0.0088,-0.3660,-0.1733) deltaMag=0.4050 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.3373 dpMove=-0.1427 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4720,4.5515,-0.7298) mvmt=(-0.0087,0.3615,0.1598) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.948,93.290) lpos=(-10.472,4.552,-0.730) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.4035,0.8954) mvmt=(-0.0087,0.3615,0.1598) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,0.1635,0.7904) mvmt=(-0.0087,0.3615,0.1598) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5515,-0.7298) mvmt=(-0.0087,0.3615,0.1598) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.948,93.290) lpos=(-10.472,4.552,-0.730) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.4035,0.8954) mvmt=(-0.0087,0.3615,0.1598) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3280,0.1635,0.7904) mvmt=(-0.0087,0.3615,0.1598) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3280,0.1635,0.7904) out=(0.3367,-0.1980,0.6306) delta=(0.0087,-0.3615,-0.1598) deltaMag=0.3954 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.3312 dpMove=-0.1488 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4719,4.5484,-0.7422) mvmt=(-0.0086,0.3584,0.1474) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.952,93.278) lpos=(-10.472,4.548,-0.742) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6469,0.4003,0.8829) mvmt=(-0.0086,0.3584,0.1474) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3281,0.1603,0.7780) mvmt=(-0.0086,0.3584,0.1474) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4719,4.5484,-0.7422) mvmt=(-0.0086,0.3584,0.1474) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.952,93.278) lpos=(-10.472,4.548,-0.742) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6469,0.4003,0.8829) mvmt=(-0.0086,0.3584,0.1474) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3281,0.1603,0.7780) mvmt=(-0.0086,0.3584,0.1474) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3281,0.1603,0.7780) out=(0.3367,-0.1980,0.6306) delta=(0.0086,-0.3584,-0.1474) deltaMag=0.3876 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.3248 dpMove=-0.1552 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4721,4.5555,-0.7507) mvmt=(-0.0088,0.3655,0.1389) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.945,93.269) lpos=(-10.472,4.555,-0.751) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6471,0.4074,0.8745) mvmt=(-0.0088,0.3655,0.1389) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4721,4.5555,-0.7507) mvmt=(-0.0088,0.3655,0.1389) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.945,93.269) lpos=(-10.472,4.555,-0.751) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6471,0.4074,0.8745) mvmt=(-0.0088,0.3655,0.1389) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6471,0.4074,0.8745) out=(-0.6471,0.4074,0.8745) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0828 dpMove=-0.1602 iDist=2.4795 applied=False +[push-back-disp] site=dispatch center=(0.3279,0.1674,0.7695) mvmt=(-0.0088,0.3655,0.1389) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3279,0.1674,0.7695) out=(0.3367,-0.1980,0.6306) delta=(0.0088,-0.3655,-0.1389) deltaMag=0.3911 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.3138 dpMove=-0.1662 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4720,4.5531,-0.7630) mvmt=(-0.0087,0.3630,0.1266) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.947,93.257) lpos=(-10.472,4.553,-0.763) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.4050,0.8622) mvmt=(-0.0087,0.3630,0.1266) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5531,-0.7630) mvmt=(-0.0087,0.3630,0.1266) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.947,93.257) lpos=(-10.472,4.553,-0.763) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.4050,0.8622) mvmt=(-0.0087,0.3630,0.1266) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6470,0.4050,0.8622) out=(-0.6470,0.4050,0.8622) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0758 dpMove=-0.1672 iDist=2.4177 applied=False +[push-back-disp] site=dispatch center=(0.3280,0.1650,0.7572) mvmt=(-0.0087,0.3630,0.1266) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3280,0.1650,0.7572) out=(0.3367,-0.1980,0.6306) delta=(0.0087,-0.3630,-0.1266) deltaMag=0.3846 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.3070 dpMove=-0.1730 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4722,4.5603,-0.7722) mvmt=(-0.0089,0.3703,0.1174) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.940,93.248) lpos=(-10.472,4.560,-0.772) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4123,0.8530) mvmt=(-0.0089,0.3703,0.1174) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4722,4.5603,-0.7722) mvmt=(-0.0089,0.3703,0.1174) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.940,93.248) lpos=(-10.472,4.560,-0.772) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4123,0.8530) mvmt=(-0.0089,0.3703,0.1174) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6472,0.4123,0.8530) out=(-0.6472,0.4123,0.8530) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0642 dpMove=-0.1788 iDist=2.3257 applied=False +[push-back-disp] site=dispatch center=(0.3278,0.1723,0.7480) mvmt=(-0.0089,0.3703,0.1174) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3278,0.1723,0.7480) out=(0.3367,-0.1980,0.6306) delta=(0.0089,-0.3703,-0.1174) deltaMag=0.3886 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.2954 dpMove=-0.1846 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4722,4.5627,-0.7833) mvmt=(-0.0090,0.3726,0.1063) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.937,93.237) lpos=(-10.472,4.563,-0.783) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4146,0.8419) mvmt=(-0.0090,0.3726,0.1063) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4722,4.5627,-0.7833) mvmt=(-0.0090,0.3726,0.1063) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.937,93.237) lpos=(-10.472,4.563,-0.783) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4146,0.8419) mvmt=(-0.0090,0.3726,0.1063) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6472,0.4146,0.8419) out=(-0.6472,0.4146,0.8419) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0546 dpMove=-0.1883 iDist=2.2585 applied=False +[push-back-disp] site=dispatch center=(0.3278,0.1746,0.7369) mvmt=(-0.0090,0.3726,0.1063) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3278,0.1746,0.7369) out=(0.3367,-0.1980,0.6306) delta=(0.0090,-0.3726,-0.1063) deltaMag=0.3876 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2859 dpMove=-0.1941 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4722,4.5599,-0.7959) mvmt=(-0.0089,0.3698,0.0937) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.940,93.224) lpos=(-10.472,4.560,-0.796) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4118,0.8293) mvmt=(-0.0089,0.3698,0.0937) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4722,4.5599,-0.7959) mvmt=(-0.0089,0.3698,0.0937) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.940,93.224) lpos=(-10.472,4.560,-0.796) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6472,0.4118,0.8293) mvmt=(-0.0089,0.3698,0.0937) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6472,0.4118,0.8293) out=(-0.6472,0.4118,0.8293) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0477 dpMove=-0.1953 iDist=2.2138 applied=False +[push-back-disp] site=dispatch center=(0.3278,0.1718,0.7243) mvmt=(-0.0089,0.3698,0.0937) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3278,0.1718,0.7243) out=(0.3367,-0.1980,0.6306) delta=(0.0089,-0.3698,-0.0937) deltaMag=0.3816 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2792 dpMove=-0.2008 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4724,4.5683,-0.8060) mvmt=(-0.0091,0.3782,0.0836) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.932,93.214) lpos=(-10.472,4.568,-0.806) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6474,0.4202,0.8192) mvmt=(-0.0091,0.3782,0.0836) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.5683,-0.8060) mvmt=(-0.0091,0.3782,0.0836) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.932,93.214) lpos=(-10.472,4.568,-0.806) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6474,0.4202,0.8192) mvmt=(-0.0091,0.3782,0.0836) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6474,0.4202,0.8192) out=(-0.6474,0.4202,0.8192) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0346 dpMove=-0.2083 iDist=2.1377 applied=False +[push-back-disp] site=dispatch center=(0.3276,0.1802,0.7142) mvmt=(-0.0091,0.3782,0.0836) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3276,0.1802,0.7142) out=(0.3367,-0.1980,0.6306) delta=(0.0091,-0.3782,-0.0836) deltaMag=0.3875 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2662 dpMove=-0.2138 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4727,4.5800,-0.8163) mvmt=(-0.0094,0.3899,0.0733) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.920,93.204) lpos=(-10.473,4.580,-0.816) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6477,0.4319,0.8089) mvmt=(-0.0094,0.3899,0.0733) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4727,4.5800,-0.8163) mvmt=(-0.0094,0.3899,0.0733) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.920,93.204) lpos=(-10.473,4.580,-0.816) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6477,0.4319,0.8089) mvmt=(-0.0094,0.3899,0.0733) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6477,0.4319,0.8089) out=(-0.6477,0.4319,0.8089) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0191 dpMove=-0.2239 iDist=2.0587 applied=False +[push-back-disp] site=dispatch center=(0.3273,0.1919,0.7039) mvmt=(-0.0094,0.3899,0.0733) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3273,0.1919,0.7039) out=(0.3367,-0.1980,0.6306) delta=(0.0094,-0.3899,-0.0733) deltaMag=0.3969 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2506 dpMove=-0.2294 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4725,4.5751,-0.8300) mvmt=(-0.0093,0.3851,0.0596) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.925,93.190) lpos=(-10.473,4.575,-0.830) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6475,0.4271,0.7952) mvmt=(-0.0093,0.3851,0.0596) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4725,4.5751,-0.8300) mvmt=(-0.0093,0.3851,0.0596) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.925,93.190) lpos=(-10.473,4.575,-0.830) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6475,0.4271,0.7952) mvmt=(-0.0093,0.3851,0.0596) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6475,0.4271,0.7952) out=(-0.6475,0.4271,0.7952) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0128 dpMove=-0.2302 iDist=2.0298 applied=False +[push-back-disp] site=dispatch center=(0.3275,0.1871,0.6902) mvmt=(-0.0093,0.3851,0.0596) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3275,0.1871,0.6902) out=(0.3367,-0.1980,0.6306) delta=(0.0093,-0.3851,-0.0596) deltaMag=0.3898 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2445 dpMove=-0.2355 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4725,4.5729,-0.8430) mvmt=(-0.0092,0.3828,0.0466) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.927,93.177) lpos=(-10.472,4.573,-0.843) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6475,0.4248,0.7822) mvmt=(-0.0092,0.3828,0.0466) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4725,4.5729,-0.8430) mvmt=(-0.0092,0.3828,0.0466) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.927,93.177) lpos=(-10.472,4.573,-0.843) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6475,0.4248,0.7822) mvmt=(-0.0092,0.3828,0.0466) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6475,0.4248,0.7822) out=(-0.6475,0.4248,0.7822) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0052 dpMove=-0.2378 iDist=1.9969 applied=False +[push-back-disp] site=dispatch center=(0.3275,0.1848,0.6772) mvmt=(-0.0092,0.3828,0.0466) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3275,0.1848,0.6772) out=(0.3367,-0.1980,0.6306) delta=(0.0092,-0.3828,-0.0466) deltaMag=0.3858 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2371 dpMove=-0.2429 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4729,4.5914,-0.8543) mvmt=(-0.0097,0.4013,0.0353) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.909,93.166) lpos=(-10.473,4.591,-0.854) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6479,0.4433,0.7709) mvmt=(-0.0097,0.4013,0.0353) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4729,4.5914,-0.8543) mvmt=(-0.0097,0.4013,0.0353) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.909,93.166) lpos=(-10.473,4.591,-0.854) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6479,0.4433,0.7709) mvmt=(-0.0097,0.4013,0.0353) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6479,0.4433,0.7709) out=(-0.6479,0.4433,0.7709) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=-0.0159 dpMove=-0.2588 iDist=1.9158 applied=False +[push-back-disp] site=dispatch center=(0.3271,0.2033,0.6659) mvmt=(-0.0097,0.4013,0.0353) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3271,0.2033,0.6659) out=(0.3367,-0.1980,0.6306) delta=(0.0097,-0.4013,-0.0353) deltaMag=0.4030 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2160 dpMove=-0.2640 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4720,4.5517,-0.8697) mvmt=(-0.0087,0.3617,0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.948,93.150) lpos=(-10.472,4.552,-0.870) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.4037,0.7555) mvmt=(-0.0087,0.3617,0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4720,4.5517,-0.8697) mvmt=(-0.0087,0.3617,0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.948,93.150) lpos=(-10.472,4.552,-0.870) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6470,0.4037,0.7555) mvmt=(-0.0087,0.3617,0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6470,0.4037,0.7555) out=(-0.6470,0.4037,0.7555) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=0.0013 dpMove=-0.2417 iDist=1.9808 applied=False +[push-back-disp] site=dispatch center=(0.3280,0.1637,0.6505) mvmt=(-0.0087,0.3617,0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3280,0.1637,0.6505) out=(0.3367,-0.1980,0.6306) delta=(0.0087,-0.3617,-0.0199) deltaMag=0.3623 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2338 dpMove=-0.2462 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4728,4.5846,-0.8807) mvmt=(-0.0095,0.3946,0.0089) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.915,93.139) lpos=(-10.473,4.585,-0.881) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6478,0.4365,0.7445) mvmt=(-0.0095,0.3946,0.0089) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4728,4.5846,-0.8807) mvmt=(-0.0095,0.3946,0.0089) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.915,93.139) lpos=(-10.473,4.585,-0.881) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6478,0.4365,0.7445) mvmt=(-0.0095,0.3946,0.0089) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6478,0.4365,0.7445) out=(-0.6478,0.4365,0.7445) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=-0.0297 dpMove=-0.2727 iDist=1.8692 applied=False +[push-back-disp] site=dispatch center=(0.3272,0.1965,0.6395) mvmt=(-0.0095,0.3946,0.0089) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3272,0.1965,0.6395) out=(0.3367,-0.1980,0.6306) delta=(0.0095,-0.3946,-0.0089) deltaMag=0.3948 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2025 dpMove=-0.2775 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4728,4.5874,-0.8942) mvmt=(-0.0096,0.3974,-0.0046) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.913,93.126) lpos=(-10.473,4.587,-0.894) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6478,0.4394,0.7310) mvmt=(-0.0096,0.3974,-0.0046) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4728,4.5874,-0.8942) mvmt=(-0.0096,0.3974,-0.0046) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.913,93.126) lpos=(-10.473,4.587,-0.894) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6478,0.4394,0.7310) mvmt=(-0.0096,0.3974,-0.0046) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6478,0.4394,0.7310) out=(-0.6478,0.4394,0.7310) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->1.0000 dpPos=-0.0412 dpMove=-0.2842 iDist=1.8340 applied=False +[push-back-disp] site=dispatch center=(0.3272,0.1994,0.6260) mvmt=(-0.0096,0.3974,-0.0046) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3272,0.1994,0.6260) out=(0.3367,-0.1980,0.6306) delta=(0.0096,-0.3974,0.0046) deltaMag=0.3975 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.1911 dpMove=-0.2889 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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.4633,4.1900,-0.8896) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,7.310,93.130) lpos=(-10.463,4.190,-0.890) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,0.0420,0.7356) 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.3367,-0.1980,0.6306) 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.3367,-2.4093,-0.7194) 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.4633,4.1900,-0.8696) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7481,4.3270,-0.7479) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.248,7.173,93.272) lpos=(-10.748,4.327,-0.748) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9231,0.1789,0.8773) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0519,-0.0611,0.7723) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0519,-2.2723,-0.5777) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3464,-3.1462,2.2766) mvmt=(-0.2377,-0.2082,0.1417) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7481,4.3270,-0.7279) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7481,4.3270,-1.4979) mvmt=(-0.2848,0.1370,-0.6083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.248,7.173,92.522) lpos=(-10.748,4.327,-1.498) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9231,0.1789,0.1273) mvmt=(-0.2848,0.1370,-0.6083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0519,-0.0611,0.0223) mvmt=(-0.2848,0.1370,-0.6083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0519,-0.0611,0.0223) out=(0.0519,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7481,4.3270,-0.7479) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.248,7.173,93.272) lpos=(-10.748,4.327,-0.748) lprev=(-10.463,4.190,-0.890) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9231,0.1789,0.8773) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0519,-0.0611,0.7723) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0519,-2.2723,-0.5777) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3464,-3.1462,2.2766) mvmt=(-0.2377,-0.2082,0.1417) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7481,4.3270,-0.7279) mvmt=(-0.2848,0.1370,0.1417) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0646,4.4792,-0.5904) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.021,93.430) lpos=(-11.065,4.479,-0.590) lprev=(-10.748,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4792,-0.5904) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3312,1.0348) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0912,0.9298) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1201,-0.4202) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0822,-3.3777,2.4341) mvmt=(-0.2642,-0.2314,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4792,-0.5704) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4792,-0.5904) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.021,93.430) lpos=(-11.065,4.479,-0.590) lprev=(-10.748,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4792,-0.5904) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3312,1.0348) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0912,0.9298) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1201,-0.4202) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0822,-3.3777,2.4341) mvmt=(-0.2642,-0.2314,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4792,-0.5704) mvmt=(-0.3165,0.1522,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.3270,-0.7479) mvmt=(-0.3165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.173,93.272) lpos=(-11.065,4.327,-0.748) lprev=(-10.748,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2396,0.1789,0.8773) mvmt=(-0.3165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-0.0611,0.7723) mvmt=(-0.3165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.2723,-0.5777) mvmt=(-0.3165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.3270,-0.7279) mvmt=(-0.3165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.3270,-1.4979) mvmt=(-0.3165,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.173,92.522) lpos=(-11.065,4.327,-1.498) lprev=(-10.748,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2396,0.1789,0.1273) mvmt=(-0.3165,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-0.0611,0.0223) mvmt=(-0.3165,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2646,-0.0611,0.0223) out=(-0.2646,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0646,4.3270,-0.7479) mvmt=(-0.3165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.173,93.272) lpos=(-11.065,4.327,-0.748) lprev=(-10.748,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2396,0.1789,0.8773) mvmt=(-0.3165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-0.0611,0.7723) mvmt=(-0.3165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.2723,-0.5777) mvmt=(-0.3165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.3270,-0.7279) mvmt=(-0.3165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3730,4.4753,-0.5945) mvmt=(-0.3084,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3730,4.4753,-0.5945) mvmt=(-0.3084,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.873,7.025,93.426) lpos=(-11.373,4.475,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3730,4.4753,-0.5945) mvmt=(-0.3084,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5480,0.3273,1.0307) mvmt=(-0.3084,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5730,0.0873,0.9257) mvmt=(-0.3084,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5730,-2.1240,-0.4243) mvmt=(-0.3084,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3730,4.4753,-0.5745) mvmt=(-0.3084,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.873,7.025,93.426) lpos=(-11.373,4.475,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4753,-0.5945) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.025,93.426) lpos=(-11.065,4.475,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4753,-0.5945) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3273,1.0307) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0873,0.9257) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1240,-0.4243) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4753,-0.5745) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4753,-0.5945) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.025,93.426) lpos=(-11.065,4.475,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4753,-0.5945) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3273,1.0307) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0873,0.9257) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1240,-0.4243) mvmt=(0.0000,0.1483,0.1534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4753,-0.5745) mvmt=(0.0000,0.1483,0.1534) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3760,4.4768,-0.5930) mvmt=(-0.3114,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3760,4.4768,-0.5930) mvmt=(-0.3114,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.876,7.023,93.427) lpos=(-11.376,4.477,-0.593) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3760,4.4768,-0.5930) mvmt=(-0.3114,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5510,0.3287,1.0322) mvmt=(-0.3114,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5760,0.0887,0.9272) mvmt=(-0.3114,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5760,-2.1226,-0.4228) mvmt=(-0.3114,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3760,4.4768,-0.5730) mvmt=(-0.3114,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.876,7.023,93.427) lpos=(-11.376,4.477,-0.593) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4768,-0.5930) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.023,93.427) lpos=(-11.065,4.477,-0.593) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4768,-0.5930) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3287,1.0322) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0887,0.9272) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1226,-0.4228) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4768,-0.5730) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4768,-0.5930) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.023,93.427) lpos=(-11.065,4.477,-0.593) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4768,-0.5930) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3287,1.0322) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0887,0.9272) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1226,-0.4228) mvmt=(0.0000,0.1498,0.1549) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4768,-0.5730) mvmt=(0.0000,0.1498,0.1549) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3669,4.4724,-0.5975) mvmt=(-0.3022,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3669,4.4724,-0.5975) mvmt=(-0.3022,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.867,7.028,93.422) lpos=(-11.367,4.472,-0.598) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3669,4.4724,-0.5975) mvmt=(-0.3022,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5419,0.3243,1.0277) mvmt=(-0.3022,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5668,0.0843,0.9227) mvmt=(-0.3022,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5668,-2.1270,-0.4273) mvmt=(-0.3022,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3669,4.4724,-0.5775) mvmt=(-0.3022,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.867,7.028,93.422) lpos=(-11.367,4.472,-0.598) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4724,-0.5975) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.028,93.422) lpos=(-11.065,4.472,-0.598) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4724,-0.5975) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3243,1.0277) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0843,0.9227) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1270,-0.4273) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4724,-0.5775) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4724,-0.5975) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.028,93.422) lpos=(-11.065,4.472,-0.598) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4724,-0.5975) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3243,1.0277) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0843,0.9227) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1270,-0.4273) mvmt=(0.0000,0.1454,0.1504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4724,-0.5775) mvmt=(0.0000,0.1454,0.1504) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3596,4.4689,-0.6011) mvmt=(-0.2950,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3596,4.4689,-0.6011) mvmt=(-0.2950,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.860,7.031,93.419) lpos=(-11.360,4.469,-0.601) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3596,4.4689,-0.6011) mvmt=(-0.2950,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5346,0.3208,1.0241) mvmt=(-0.2950,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5596,0.0808,0.9191) mvmt=(-0.2950,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5596,-2.1304,-0.4309) mvmt=(-0.2950,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3596,4.4689,-0.5811) mvmt=(-0.2950,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.860,7.031,93.419) lpos=(-11.360,4.469,-0.601) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4689,-0.6011) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.031,93.419) lpos=(-11.065,4.469,-0.601) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4689,-0.6011) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3208,1.0241) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0808,0.9191) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1304,-0.4309) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4689,-0.5811) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4689,-0.6011) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.031,93.419) lpos=(-11.065,4.469,-0.601) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4689,-0.6011) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3208,1.0241) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0808,0.9191) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1304,-0.4309) mvmt=(0.0000,0.1419,0.1468) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4689,-0.5811) mvmt=(0.0000,0.1419,0.1468) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3719,4.4748,-0.5951) mvmt=(-0.3073,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3719,4.4748,-0.5951) mvmt=(-0.3073,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.872,7.025,93.425) lpos=(-11.372,4.475,-0.595) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3719,4.4748,-0.5951) mvmt=(-0.3073,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5469,0.3267,1.0301) mvmt=(-0.3073,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5719,0.0867,0.9251) mvmt=(-0.3073,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5719,-2.1245,-0.4249) mvmt=(-0.3073,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3719,4.4748,-0.5751) mvmt=(-0.3073,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.872,7.025,93.425) lpos=(-11.372,4.475,-0.595) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4748,-0.5951) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.025,93.425) lpos=(-11.065,4.475,-0.595) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4748,-0.5951) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3267,1.0301) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0867,0.9251) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1246,-0.4249) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4748,-0.5751) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4748,-0.5951) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.025,93.425) lpos=(-11.065,4.475,-0.595) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4748,-0.5951) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3267,1.0301) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0867,0.9251) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1246,-0.4249) mvmt=(0.0000,0.1478,0.1529) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4748,-0.5751) mvmt=(0.0000,0.1478,0.1529) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3644,4.4712,-0.5988) mvmt=(-0.2998,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3644,4.4712,-0.5988) mvmt=(-0.2998,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.864,7.029,93.421) lpos=(-11.364,4.471,-0.599) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3644,4.4712,-0.5988) mvmt=(-0.2998,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5394,0.3231,1.0264) mvmt=(-0.2998,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5644,0.0831,0.9214) mvmt=(-0.2998,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5644,-2.1281,-0.4286) mvmt=(-0.2998,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3644,4.4712,-0.5788) mvmt=(-0.2998,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.864,7.029,93.421) lpos=(-11.364,4.471,-0.599) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4712,-0.5988) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.029,93.421) lpos=(-11.065,4.471,-0.599) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4712,-0.5988) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3231,1.0264) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0831,0.9214) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1281,-0.4286) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4712,-0.5788) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4712,-0.5988) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.029,93.421) lpos=(-11.065,4.471,-0.599) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4712,-0.5988) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3231,1.0264) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0831,0.9214) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1281,-0.4286) mvmt=(0.0000,0.1442,0.1491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4712,-0.5788) mvmt=(0.0000,0.1442,0.1491) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3579,4.4681,-0.6020) mvmt=(-0.2933,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3579,4.4681,-0.6020) mvmt=(-0.2933,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.858,7.032,93.418) lpos=(-11.358,4.468,-0.602) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3579,4.4681,-0.6020) mvmt=(-0.2933,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5329,0.3200,1.0232) mvmt=(-0.2933,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5579,0.0800,0.9182) mvmt=(-0.2933,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5579,-2.1313,-0.4318) mvmt=(-0.2933,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3579,4.4681,-0.5820) mvmt=(-0.2933,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.858,7.032,93.418) lpos=(-11.358,4.468,-0.602) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4681,-0.6020) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.032,93.418) lpos=(-11.065,4.468,-0.602) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4681,-0.6020) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3200,1.0232) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0800,0.9182) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1313,-0.4318) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4681,-0.5820) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4681,-0.6020) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.032,93.418) lpos=(-11.065,4.468,-0.602) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4681,-0.6020) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3200,1.0232) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0800,0.9182) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1313,-0.4318) mvmt=(0.0000,0.1411,0.1459) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4681,-0.5820) mvmt=(0.0000,0.1411,0.1459) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3673,4.4726,-0.5973) mvmt=(-0.3027,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3673,4.4726,-0.5973) mvmt=(-0.3027,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.867,7.027,93.423) lpos=(-11.367,4.473,-0.597) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3673,4.4726,-0.5973) mvmt=(-0.3027,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5423,0.3245,1.0279) mvmt=(-0.3027,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5673,0.0845,0.9229) mvmt=(-0.3027,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5673,-2.1267,-0.4271) mvmt=(-0.3027,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3673,4.4726,-0.5773) mvmt=(-0.3027,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.867,7.027,93.423) lpos=(-11.367,4.473,-0.597) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4726,-0.5973) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.027,93.423) lpos=(-11.065,4.473,-0.597) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4726,-0.5973) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3245,1.0279) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0845,0.9229) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1267,-0.4271) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4726,-0.5773) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4726,-0.5973) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.027,93.423) lpos=(-11.065,4.473,-0.597) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4726,-0.5973) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3245,1.0279) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0845,0.9229) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1267,-0.4271) mvmt=(0.0000,0.1456,0.1506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4726,-0.5773) mvmt=(0.0000,0.1456,0.1506) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3746,4.4761,-0.5937) mvmt=(-0.3100,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3746,4.4761,-0.5937) mvmt=(-0.3100,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.875,7.024,93.426) lpos=(-11.375,4.476,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3746,4.4761,-0.5937) mvmt=(-0.3100,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5496,0.3280,1.0315) mvmt=(-0.3100,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5746,0.0880,0.9265) mvmt=(-0.3100,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5746,-2.1232,-0.4235) mvmt=(-0.3100,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3746,4.4761,-0.5737) mvmt=(-0.3100,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.875,7.024,93.426) lpos=(-11.375,4.476,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4761,-0.5937) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.024,93.426) lpos=(-11.065,4.476,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4761,-0.5937) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3280,1.0315) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0880,0.9265) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1232,-0.4235) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4761,-0.5737) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4761,-0.5937) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.024,93.426) lpos=(-11.065,4.476,-0.594) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4761,-0.5937) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3280,1.0315) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0880,0.9265) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1232,-0.4235) mvmt=(0.0000,0.1491,0.1542) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4761,-0.5737) mvmt=(0.0000,0.1491,0.1542) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3706,4.4742,-0.5957) mvmt=(-0.3060,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3706,4.4742,-0.5957) mvmt=(-0.3060,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.871,7.026,93.424) lpos=(-11.371,4.474,-0.596) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3706,4.4742,-0.5957) mvmt=(-0.3060,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5456,0.3261,1.0295) mvmt=(-0.3060,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5706,0.0861,0.9245) mvmt=(-0.3060,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5706,-2.1251,-0.4255) mvmt=(-0.3060,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3706,4.4742,-0.5757) mvmt=(-0.3060,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.871,7.026,93.424) lpos=(-11.371,4.474,-0.596) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4742,-0.5957) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.026,93.424) lpos=(-11.065,4.474,-0.596) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4742,-0.5957) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3261,1.0295) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0861,0.9245) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1251,-0.4255) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4742,-0.5757) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4742,-0.5957) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.026,93.424) lpos=(-11.065,4.474,-0.596) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4742,-0.5957) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3261,1.0295) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0861,0.9245) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1251,-0.4255) mvmt=(0.0000,0.1472,0.1523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4742,-0.5757) mvmt=(0.0000,0.1472,0.1523) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3887,4.4612,-0.6090) mvmt=(-0.3241,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3887,4.4612,-0.6090) mvmt=(-0.3241,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.889,7.039,93.411) lpos=(-11.389,4.461,-0.609) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3887,4.4612,-0.6090) mvmt=(-0.3241,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5637,0.3132,1.0162) mvmt=(-0.3241,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5887,0.0732,0.9112) mvmt=(-0.3241,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5887,-2.1381,-0.4388) mvmt=(-0.3241,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3887,4.4612,-0.5890) mvmt=(-0.3241,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.889,7.039,93.411) lpos=(-11.389,4.461,-0.609) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4612,-0.6090) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.039,93.411) lpos=(-11.065,4.461,-0.609) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4612,-0.6090) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3132,1.0162) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0732,0.9112) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1381,-0.4388) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4612,-0.5890) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4612,-0.6090) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.039,93.411) lpos=(-11.065,4.461,-0.609) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4612,-0.6090) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.3132,1.0162) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0732,0.9112) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1381,-0.4388) mvmt=(0.0000,0.1342,0.1389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4612,-0.5890) mvmt=(0.0000,0.1342,0.1389) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.4075,4.4464,-0.6243) mvmt=(-0.3428,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.4075,4.4464,-0.6243) mvmt=(-0.3428,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.907,7.054,93.396) lpos=(-11.407,4.446,-0.624) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.4075,4.4464,-0.6243) mvmt=(-0.3428,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5825,0.2984,1.0009) mvmt=(-0.3428,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6075,0.0584,0.8959) mvmt=(-0.3428,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6075,-2.1529,-0.4541) mvmt=(-0.3428,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.4075,4.4464,-0.6043) mvmt=(-0.3428,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.907,7.054,93.396) lpos=(-11.407,4.446,-0.624) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4464,-0.6243) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.054,93.396) lpos=(-11.065,4.446,-0.624) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4464,-0.6243) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.2984,1.0009) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0584,0.8959) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1529,-0.4541) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4464,-0.6043) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4464,-0.6243) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.054,93.396) lpos=(-11.065,4.446,-0.624) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4464,-0.6243) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.2984,1.0009) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0584,0.8959) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1529,-0.4541) mvmt=(0.0000,0.1194,0.1236) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4464,-0.6043) mvmt=(0.0000,0.1194,0.1236) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.4333,4.4336,-0.6376) mvmt=(-0.3687,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.4333,4.4336,-0.6376) mvmt=(-0.3687,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.933,7.066,93.382) lpos=(-11.433,4.434,-0.638) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.4333,4.4336,-0.6376) mvmt=(-0.3687,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6083,0.2856,0.9876) mvmt=(-0.3687,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6333,0.0456,0.8826) mvmt=(-0.3687,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6333,-2.1657,-0.4674) mvmt=(-0.3687,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.4333,4.4336,-0.6176) mvmt=(-0.3687,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.933,7.066,93.382) lpos=(-11.433,4.434,-0.638) lprev=(-11.065,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4336,-0.6376) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.066,93.382) lpos=(-11.065,4.434,-0.638) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4336,-0.6376) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.2856,0.9876) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0456,0.8826) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1657,-0.4674) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4336,-0.6176) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4336,-0.6376) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.565,7.066,93.382) lpos=(-11.065,4.434,-0.638) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0646,4.4336,-0.6376) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2396,0.2856,0.9876) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,0.0456,0.8826) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2646,-2.1657,-0.4674) mvmt=(0.0000,0.1066,0.1103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0646,4.4336,-0.6176) mvmt=(0.0000,0.1066,0.1103) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0430,4.4377,-0.6334) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.062,93.387) lpos=(-11.043,4.438,-0.633) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0430,4.4377,-0.6334) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2180,0.2896,0.9918) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,0.0496,0.8868) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.1616,-0.4632) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.4377,-0.6134) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.4377,-0.6334) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.062,93.387) lpos=(-11.043,4.438,-0.633) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0430,4.4377,-0.6334) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2180,0.2896,0.9918) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,0.0496,0.8868) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.1616,-0.4632) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.4377,-0.6134) mvmt=(0.0216,0.1107,0.1145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-0.7479) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.173,93.272) lpos=(-11.043,4.327,-0.748) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2180,0.1789,0.8773) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-0.0611,0.7723) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.2723,-0.5777) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-0.7279) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-1.4979) mvmt=(0.0216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.173,92.522) lpos=(-11.043,4.327,-1.498) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2180,0.1789,0.1273) mvmt=(0.0216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-0.0611,0.0223) mvmt=(0.0216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2430,-0.0611,0.0223) out=(-0.2430,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0430,4.3270,-0.7479) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.173,93.272) lpos=(-11.043,4.327,-0.748) lprev=(-11.065,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2180,0.1789,0.8773) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-0.0611,0.7723) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.2723,-0.5777) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-0.7279) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0214,4.4380,-0.6331) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.062,93.387) lpos=(-11.021,4.438,-0.633) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0214,4.4380,-0.6331) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1964,0.2900,0.9921) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,0.0500,0.8871) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,-2.1613,-0.4629) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0214,4.4380,-0.6131) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0214,4.4380,-0.6331) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.062,93.387) lpos=(-11.021,4.438,-0.633) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0214,4.4380,-0.6331) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1964,0.2900,0.9921) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,0.0500,0.8871) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,-2.1613,-0.4629) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0214,4.4380,-0.6131) mvmt=(0.0216,0.1110,0.1148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0214,4.3270,-0.7479) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.173,93.272) lpos=(-11.021,4.327,-0.748) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1964,0.1789,0.8773) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,-0.0611,0.7723) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,-2.2723,-0.5777) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0214,4.3270,-0.7279) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0214,4.3270,-1.4979) mvmt=(0.0216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.173,92.522) lpos=(-11.021,4.327,-1.498) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1964,0.1789,0.1273) mvmt=(0.0216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,-0.0611,0.0223) mvmt=(0.0216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2214,-0.0611,0.0223) out=(-0.2214,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0214,4.3270,-0.7479) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.173,93.272) lpos=(-11.021,4.327,-0.748) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1964,0.1789,0.8773) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,-0.0611,0.7723) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,-2.2723,-0.5777) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0214,4.3270,-0.7279) mvmt=(0.0216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0004,4.4348,-0.6364) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.500,7.065,93.384) lpos=(-11.000,4.435,-0.636) lprev=(-11.021,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0004,4.4348,-0.6364) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1754,0.2867,0.9888) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,0.0467,0.8838) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,-2.1645,-0.4662) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0004,4.4348,-0.6164) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0004,4.4348,-0.6364) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.500,7.065,93.384) lpos=(-11.000,4.435,-0.636) lprev=(-11.021,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0004,4.4348,-0.6364) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1754,0.2867,0.9888) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,0.0467,0.8838) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,-2.1645,-0.4662) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0004,4.4348,-0.6164) mvmt=(0.0210,0.1078,0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0004,4.3270,-0.7479) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.500,7.173,93.272) lpos=(-11.000,4.327,-0.748) lprev=(-11.021,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1754,0.1789,0.8773) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,-0.0611,0.7723) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,-2.2723,-0.5777) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0004,4.3270,-0.7279) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0004,4.3270,-1.4979) mvmt=(0.0210,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.500,7.173,92.522) lpos=(-11.000,4.327,-1.498) lprev=(-11.021,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1754,0.1789,0.1273) mvmt=(0.0210,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,-0.0611,0.0223) mvmt=(0.0210,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2004,-0.0611,0.0223) out=(-0.2004,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0004,4.3270,-0.7479) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.500,7.173,93.272) lpos=(-11.000,4.327,-0.748) lprev=(-11.021,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1754,0.1789,0.8773) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,-0.0611,0.7723) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2004,-2.2723,-0.5777) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0004,4.3270,-0.7279) mvmt=(0.0210,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9802,4.4309,-0.6404) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.480,7.069,93.380) lpos=(-10.980,4.431,-0.640) lprev=(-11.000,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9802,4.4309,-0.6404) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1552,0.2829,0.9848) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,0.0429,0.8798) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,-2.1684,-0.4702) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9802,4.4309,-0.6204) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9802,4.4309,-0.6404) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.480,7.069,93.380) lpos=(-10.980,4.431,-0.640) lprev=(-11.000,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9802,4.4309,-0.6404) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1552,0.2829,0.9848) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,0.0429,0.8798) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,-2.1684,-0.4702) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9802,4.4309,-0.6204) mvmt=(0.0202,0.1039,0.1075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9802,4.3270,-0.7479) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.480,7.173,93.272) lpos=(-10.980,4.327,-0.748) lprev=(-11.000,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1552,0.1789,0.8773) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,-0.0611,0.7723) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,-2.2723,-0.5777) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9802,4.3270,-0.7279) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9802,4.3270,-1.4979) mvmt=(0.0202,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.480,7.173,92.522) lpos=(-10.980,4.327,-1.498) lprev=(-11.000,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1552,0.1789,0.1273) mvmt=(0.0202,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,-0.0611,0.0223) mvmt=(0.0202,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1802,-0.0611,0.0223) out=(-0.1802,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9802,4.3270,-0.7479) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.480,7.173,93.272) lpos=(-10.980,4.327,-0.748) lprev=(-11.000,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1552,0.1789,0.8773) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,-0.0611,0.7723) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1802,-2.2723,-0.5777) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9802,4.3270,-0.7279) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9611,4.4249,-0.6466) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.075,93.373) lpos=(-10.961,4.425,-0.647) lprev=(-10.980,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9611,4.4249,-0.6466) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1361,0.2769,0.9786) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,0.0369,0.8736) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,-2.1744,-0.4764) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9611,4.4249,-0.6266) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9611,4.4249,-0.6466) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.075,93.373) lpos=(-10.961,4.425,-0.647) lprev=(-10.980,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9611,4.4249,-0.6466) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1361,0.2769,0.9786) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,0.0369,0.8736) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,-2.1744,-0.4764) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9611,4.4249,-0.6266) mvmt=(0.0191,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9611,4.3270,-0.7479) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.173,93.272) lpos=(-10.961,4.327,-0.748) lprev=(-10.980,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1361,0.1789,0.8773) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,-0.0611,0.7723) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,-2.2723,-0.5777) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9611,4.3270,-0.7279) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9611,4.3270,-1.4979) mvmt=(0.0191,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.173,92.522) lpos=(-10.961,4.327,-1.498) lprev=(-10.980,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1361,0.1789,0.1273) mvmt=(0.0191,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,-0.0611,0.0223) mvmt=(0.0191,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1611,-0.0611,0.0223) out=(-0.1611,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9611,4.3270,-0.7479) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.173,93.272) lpos=(-10.961,4.327,-0.748) lprev=(-10.980,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1361,0.1789,0.8773) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,-0.0611,0.7723) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1611,-2.2723,-0.5777) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9611,4.3270,-0.7279) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9411,4.4299,-0.6414) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.070,93.379) lpos=(-10.941,4.430,-0.641) lprev=(-10.961,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9411,4.4299,-0.6414) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1161,0.2819,0.9838) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,0.0419,0.8788) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,-2.1694,-0.4712) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9411,4.4299,-0.6214) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9411,4.4299,-0.6414) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.070,93.379) lpos=(-10.941,4.430,-0.641) lprev=(-10.961,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9411,4.4299,-0.6414) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1161,0.2819,0.9838) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,0.0419,0.8788) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,-2.1694,-0.4712) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9411,4.4299,-0.6214) mvmt=(0.0201,0.1029,0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9411,4.3270,-0.7479) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.173,93.272) lpos=(-10.941,4.327,-0.748) lprev=(-10.961,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1161,0.1789,0.8773) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,-0.0611,0.7723) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,-2.2723,-0.5777) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9411,4.3270,-0.7279) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9411,4.3270,-1.4979) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.173,92.522) lpos=(-10.941,4.327,-1.498) lprev=(-10.961,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1161,0.1789,0.1273) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,-0.0611,0.0223) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1411,-0.0611,0.0223) out=(-0.1411,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9411,4.3270,-0.7479) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.173,93.272) lpos=(-10.941,4.327,-0.748) lprev=(-10.961,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1161,0.1789,0.8773) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,-0.0611,0.7723) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1411,-2.2723,-0.5777) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9411,4.3270,-0.7279) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9213,4.4287,-0.6427) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.421,7.071,93.377) lpos=(-10.921,4.429,-0.643) lprev=(-10.941,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9213,4.4287,-0.6427) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0963,0.2807,0.9825) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,0.0407,0.8775) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,-2.1706,-0.4725) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9213,4.4287,-0.6227) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9213,4.4287,-0.6427) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.421,7.071,93.377) lpos=(-10.921,4.429,-0.643) lprev=(-10.941,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9213,4.4287,-0.6427) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0963,0.2807,0.9825) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,0.0407,0.8775) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,-2.1706,-0.4725) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9213,4.4287,-0.6227) mvmt=(0.0198,0.1017,0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9213,4.3270,-0.7479) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.421,7.173,93.272) lpos=(-10.921,4.327,-0.748) lprev=(-10.941,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0963,0.1789,0.8773) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,-0.0611,0.7723) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,-2.2723,-0.5777) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9213,4.3270,-0.7279) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9213,4.3270,-1.4979) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.421,7.173,92.522) lpos=(-10.921,4.327,-1.498) lprev=(-10.941,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0963,0.1789,0.1273) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,-0.0611,0.0223) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1213,-0.0611,0.0223) out=(-0.1213,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9213,4.3270,-0.7479) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.421,7.173,93.272) lpos=(-10.921,4.327,-0.748) lprev=(-10.941,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0963,0.1789,0.8773) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,-0.0611,0.7723) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1213,-2.2723,-0.5777) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9213,4.3270,-0.7279) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9011,4.4305,-0.6409) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.070,93.379) lpos=(-10.901,4.430,-0.641) lprev=(-10.921,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9011,4.4305,-0.6409) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0761,0.2824,0.9843) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,0.0424,0.8793) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,-2.1689,-0.4707) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9011,4.4305,-0.6209) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9011,4.4305,-0.6409) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.070,93.379) lpos=(-10.901,4.430,-0.641) lprev=(-10.921,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9011,4.4305,-0.6409) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0761,0.2824,0.9843) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,0.0424,0.8793) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,-2.1689,-0.4707) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9011,4.4305,-0.6209) mvmt=(0.0201,0.1035,0.1070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9011,4.3270,-0.7479) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.173,93.272) lpos=(-10.901,4.327,-0.748) lprev=(-10.921,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0761,0.1789,0.8773) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,-0.0611,0.7723) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,-2.2723,-0.5777) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9011,4.3270,-0.7279) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9011,4.3270,-1.4979) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.173,92.522) lpos=(-10.901,4.327,-1.498) lprev=(-10.921,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0761,0.1789,0.1273) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,-0.0611,0.0223) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1011,-0.0611,0.0223) out=(-0.1011,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9011,4.3270,-0.7479) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.401,7.173,93.272) lpos=(-10.901,4.327,-0.748) lprev=(-10.921,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0761,0.1789,0.8773) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,-0.0611,0.7723) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1011,-2.2723,-0.5777) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9011,4.3270,-0.7279) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8816,4.4274,-0.6441) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.382,7.073,93.376) lpos=(-10.882,4.427,-0.644) lprev=(-10.901,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8816,4.4274,-0.6441) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0566,0.2793,0.9811) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,0.0393,0.8761) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,-2.1719,-0.4739) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8816,4.4274,-0.6241) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8816,4.4274,-0.6441) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.382,7.073,93.376) lpos=(-10.882,4.427,-0.644) lprev=(-10.901,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8816,4.4274,-0.6441) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0566,0.2793,0.9811) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,0.0393,0.8761) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,-2.1719,-0.4739) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8816,4.4274,-0.6241) mvmt=(0.0195,0.1004,0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8816,4.3270,-0.7479) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.382,7.173,93.272) lpos=(-10.882,4.327,-0.748) lprev=(-10.901,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0566,0.1789,0.8773) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,-0.0611,0.7723) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,-2.2723,-0.5777) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8816,4.3270,-0.7279) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8816,4.3270,-1.4979) mvmt=(0.0195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.382,7.173,92.522) lpos=(-10.882,4.327,-1.498) lprev=(-10.901,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0566,0.1789,0.1273) mvmt=(0.0195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,-0.0611,0.0223) mvmt=(0.0195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0816,-0.0611,0.0223) out=(-0.0816,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8816,4.3270,-0.7479) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.382,7.173,93.272) lpos=(-10.882,4.327,-0.748) lprev=(-10.901,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0566,0.1789,0.8773) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,-0.0611,0.7723) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0816,-2.2723,-0.5777) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8816,4.3270,-0.7279) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8620,4.4275,-0.6440) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.362,7.073,93.376) lpos=(-10.862,4.427,-0.644) lprev=(-10.882,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8620,4.4275,-0.6440) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0370,0.2794,0.9812) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0620,0.0394,0.8763) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0620,-2.1718,-0.4738) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8620,4.4275,-0.6240) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8620,4.4275,-0.6440) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.362,7.073,93.376) lpos=(-10.862,4.427,-0.644) lprev=(-10.882,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8620,4.4275,-0.6440) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0370,0.2794,0.9812) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0620,0.0394,0.8763) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0620,-2.1718,-0.4738) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8620,4.4275,-0.6240) mvmt=(0.0196,0.1005,0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8620,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.362,7.173,93.272) lpos=(-10.862,4.327,-0.748) lprev=(-10.882,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0370,0.1789,0.8773) 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.0620,-0.0611,0.7723) 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.0620,-2.2723,-0.5777) 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.8620,4.3270,-0.7279) 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.8620,4.3270,-1.4979) mvmt=(0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.362,7.173,92.522) lpos=(-10.862,4.327,-1.498) lprev=(-10.882,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0370,0.1789,0.1273) 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.0620,-0.0611,0.0223) 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.0620,-0.0611,0.0223) out=(-0.0620,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8620,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.362,7.173,93.272) lpos=(-10.862,4.327,-0.748) lprev=(-10.882,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0370,0.1789,0.8773) 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.0620,-0.0611,0.7723) 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.0620,-2.2723,-0.5777) 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.8620,4.3270,-0.7279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8422,4.4288,-0.6426) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.071,93.377) lpos=(-10.842,4.429,-0.643) lprev=(-10.862,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8422,4.4288,-0.6426) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0172,0.2807,0.9826) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,0.0407,0.8776) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,-2.1705,-0.4724) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8422,4.4288,-0.6226) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8422,4.4288,-0.6426) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.071,93.377) lpos=(-10.842,4.429,-0.643) lprev=(-10.862,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8422,4.4288,-0.6426) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0172,0.2807,0.9826) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,0.0407,0.8776) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,-2.1705,-0.4724) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8422,4.4288,-0.6226) mvmt=(0.0198,0.1018,0.1053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8422,4.3270,-0.7479) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.173,93.272) lpos=(-10.842,4.327,-0.748) lprev=(-10.862,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0172,0.1789,0.8773) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,-0.0611,0.7723) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,-2.2723,-0.5777) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8422,4.3270,-0.7279) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8422,4.3270,-1.4979) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.173,92.522) lpos=(-10.842,4.327,-1.498) lprev=(-10.862,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0172,0.1789,0.1273) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,-0.0611,0.0223) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0422,-0.0611,0.0223) out=(-0.0422,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8422,4.3270,-0.7479) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.173,93.272) lpos=(-10.842,4.327,-0.748) lprev=(-10.862,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0172,0.1789,0.8773) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,-0.0611,0.7723) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0422,-2.2723,-0.5777) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8422,4.3270,-0.7279) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8227,4.4270,-0.6444) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.073,93.376) lpos=(-10.823,4.427,-0.644) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8227,4.4270,-0.6444) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9977,0.2790,0.9808) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,0.0390,0.8758) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,-2.1723,-0.4742) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8227,4.4270,-0.6244) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8227,4.4270,-0.6444) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.073,93.376) lpos=(-10.823,4.427,-0.644) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8227,4.4270,-0.6444) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9977,0.2790,0.9808) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,0.0390,0.8758) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,-2.1723,-0.4742) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8227,4.4270,-0.6244) mvmt=(0.0195,0.1000,0.1035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8227,4.3270,-0.7479) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.173,93.272) lpos=(-10.823,4.327,-0.748) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9977,0.1789,0.8773) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,-0.0611,0.7723) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,-2.2723,-0.5777) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8227,4.3270,-0.7279) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8227,4.3270,-1.4979) mvmt=(0.0195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.173,92.522) lpos=(-10.823,4.327,-1.498) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9977,0.1789,0.1273) mvmt=(0.0195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,-0.0611,0.0223) mvmt=(0.0195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0227,-0.0611,0.0223) out=(-0.0227,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8227,4.3270,-0.7479) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.173,93.272) lpos=(-10.823,4.327,-0.748) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9977,0.1789,0.8773) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,-0.0611,0.7723) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0227,-2.2723,-0.5777) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8227,4.3270,-0.7279) mvmt=(0.0195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8033,4.4266,-0.6449) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.303,7.073,93.375) lpos=(-10.803,4.427,-0.645) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8033,4.4266,-0.6449) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9783,0.2785,0.9803) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,0.0385,0.8753) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,-2.1727,-0.4747) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8033,4.4266,-0.6249) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8033,4.4266,-0.6449) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.303,7.073,93.375) lpos=(-10.803,4.427,-0.645) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8033,4.4266,-0.6449) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9783,0.2785,0.9803) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,0.0385,0.8753) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,-2.1727,-0.4747) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8033,4.4266,-0.6249) mvmt=(0.0194,0.0996,0.1030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8033,4.3270,-0.7479) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.303,7.173,93.272) lpos=(-10.803,4.327,-0.748) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9783,0.1789,0.8773) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,-0.0611,0.7723) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,-2.2723,-0.5777) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8033,4.3270,-0.7279) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8033,4.3270,-1.4979) mvmt=(0.0194,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.303,7.173,92.522) lpos=(-10.803,4.327,-1.498) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9783,0.1789,0.1273) mvmt=(0.0194,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,-0.0611,0.0223) mvmt=(0.0194,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0033,-0.0611,0.0223) out=(-0.0033,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8033,4.3270,-0.7479) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.303,7.173,93.272) lpos=(-10.803,4.327,-0.748) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9783,0.1789,0.8773) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,-0.0611,0.7723) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0033,-2.2723,-0.5777) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8033,4.3270,-0.7279) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7837,4.4276,-0.6438) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.284,7.072,93.376) lpos=(-10.784,4.428,-0.644) lprev=(-10.803,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7837,4.4276,-0.6438) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9587,0.2796,0.9814) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0163,0.0396,0.8764) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0163,-2.1717,-0.4736) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7837,4.4276,-0.6238) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7837,4.4276,-0.6438) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.284,7.072,93.376) lpos=(-10.784,4.428,-0.644) lprev=(-10.803,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7837,4.4276,-0.6438) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9587,0.2796,0.9814) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0163,0.0396,0.8764) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0163,-2.1717,-0.4736) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7837,4.4276,-0.6238) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7837,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.284,7.173,93.272) lpos=(-10.784,4.327,-0.748) lprev=(-10.803,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9587,0.1789,0.8773) 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.0163,-0.0611,0.7723) 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.0163,-2.2723,-0.5777) 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.7837,4.3270,-0.7279) 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.7837,4.3270,-1.4979) mvmt=(0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.284,7.173,92.522) lpos=(-10.784,4.327,-1.498) lprev=(-10.803,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9587,0.1789,0.1273) 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.0163,-0.0611,0.0223) 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.0163,-0.0611,0.0223) out=(0.0163,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7837,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.284,7.173,93.272) lpos=(-10.784,4.327,-0.748) lprev=(-10.803,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9587,0.1789,0.8773) 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.0163,-0.0611,0.7723) 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.0163,-2.2723,-0.5777) 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.7837,4.3270,-0.7279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7636,4.4302,-0.6411) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.070,93.379) lpos=(-10.764,4.430,-0.641) lprev=(-10.784,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7636,4.4302,-0.6411) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9386,0.2822,0.9841) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,0.0422,0.8791) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,-2.1691,-0.4709) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7636,4.4302,-0.6211) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7636,4.4302,-0.6411) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.070,93.379) lpos=(-10.764,4.430,-0.641) lprev=(-10.784,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7636,4.4302,-0.6411) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9386,0.2822,0.9841) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,0.0422,0.8791) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,-2.1691,-0.4709) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7636,4.4302,-0.6211) mvmt=(0.0201,0.1032,0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7636,4.3270,-0.7479) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.173,93.272) lpos=(-10.764,4.327,-0.748) lprev=(-10.784,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9386,0.1789,0.8773) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,-0.0611,0.7723) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,-2.2723,-0.5777) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7636,4.3270,-0.7279) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7636,4.3270,-1.4979) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.173,92.522) lpos=(-10.764,4.327,-1.498) lprev=(-10.784,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9386,0.1789,0.1273) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,-0.0611,0.0223) mvmt=(0.0201,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0364,-0.0611,0.0223) out=(0.0364,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7636,4.3270,-0.7479) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.264,7.173,93.272) lpos=(-10.764,4.327,-0.748) lprev=(-10.784,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9386,0.1789,0.8773) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,-0.0611,0.7723) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0364,-2.2723,-0.5777) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7636,4.3270,-0.7279) mvmt=(0.0201,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7442,4.4265,-0.6450) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.244,7.074,93.375) lpos=(-10.744,4.426,-0.645) lprev=(-10.764,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7442,4.4265,-0.6450) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9192,0.2784,0.9802) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,0.0384,0.8752) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,-2.1728,-0.4748) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7442,4.4265,-0.6250) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7442,4.4265,-0.6450) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.244,7.074,93.375) lpos=(-10.744,4.426,-0.645) lprev=(-10.764,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7442,4.4265,-0.6450) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9192,0.2784,0.9802) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,0.0384,0.8752) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,-2.1728,-0.4748) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7442,4.4265,-0.6250) mvmt=(0.0194,0.0995,0.1029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7442,4.3270,-0.7479) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.244,7.173,93.272) lpos=(-10.744,4.327,-0.748) lprev=(-10.764,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9192,0.1789,0.8773) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,-0.0611,0.7723) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,-2.2723,-0.5777) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7442,4.3270,-0.7279) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7442,4.3270,-1.4979) mvmt=(0.0194,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.244,7.173,92.522) lpos=(-10.744,4.327,-1.498) lprev=(-10.764,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9192,0.1789,0.1273) mvmt=(0.0194,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,-0.0611,0.0223) mvmt=(0.0194,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0558,-0.0611,0.0223) out=(0.0558,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7442,4.3270,-0.7479) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.244,7.173,93.272) lpos=(-10.744,4.327,-0.748) lprev=(-10.764,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9192,0.1789,0.8773) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,-0.0611,0.7723) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0558,-2.2723,-0.5777) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7442,4.3270,-0.7279) mvmt=(0.0194,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7253,4.4244,-0.6471) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.225,7.076,93.373) lpos=(-10.725,4.424,-0.647) lprev=(-10.744,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7253,4.4244,-0.6471) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9003,0.2764,0.9781) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,0.0364,0.8731) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,-2.1749,-0.4769) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7253,4.4244,-0.6271) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7253,4.4244,-0.6471) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.225,7.076,93.373) lpos=(-10.725,4.424,-0.647) lprev=(-10.744,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7253,4.4244,-0.6471) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9003,0.2764,0.9781) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,0.0364,0.8731) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,-2.1749,-0.4769) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7253,4.4244,-0.6271) mvmt=(0.0190,0.0975,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7253,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.225,7.173,93.272) lpos=(-10.725,4.327,-0.748) lprev=(-10.744,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9003,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,-0.0611,0.7723) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,-2.2723,-0.5777) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7253,4.3270,-0.7279) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7253,4.3270,-1.4979) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.225,7.173,92.522) lpos=(-10.725,4.327,-1.498) lprev=(-10.744,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9003,0.1789,0.1273) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,-0.0611,0.0223) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0748,-0.0611,0.0223) out=(0.0748,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7253,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.225,7.173,93.272) lpos=(-10.725,4.327,-0.748) lprev=(-10.744,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9003,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,-0.0611,0.7723) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0748,-2.2723,-0.5777) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7253,4.3270,-0.7279) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7057,4.4276,-0.6439) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.206,7.072,93.376) lpos=(-10.706,4.428,-0.644) lprev=(-10.725,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7057,4.4276,-0.6439) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8807,0.2795,0.9813) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0943,0.0395,0.8764) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0943,-2.1717,-0.4737) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7057,4.4276,-0.6239) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7057,4.4276,-0.6439) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.206,7.072,93.376) lpos=(-10.706,4.428,-0.644) lprev=(-10.725,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7057,4.4276,-0.6439) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8807,0.2795,0.9813) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0943,0.0395,0.8764) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0943,-2.1717,-0.4737) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7057,4.4276,-0.6239) mvmt=(0.0196,0.1006,0.1041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7057,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.206,7.173,93.272) lpos=(-10.706,4.327,-0.748) lprev=(-10.725,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8807,0.1789,0.8773) 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.0943,-0.0611,0.7723) 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.0943,-2.2723,-0.5777) 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.7057,4.3270,-0.7279) 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.7057,4.3270,-1.4979) mvmt=(0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.206,7.173,92.522) lpos=(-10.706,4.327,-1.498) lprev=(-10.725,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8807,0.1789,0.1273) 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.0943,-0.0611,0.0223) 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.0943,-0.0611,0.0223) out=(0.0943,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7057,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.206,7.173,93.272) lpos=(-10.706,4.327,-0.748) lprev=(-10.725,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8807,0.1789,0.8773) 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.0943,-0.0611,0.7723) 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.0943,-2.2723,-0.5777) 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.7057,4.3270,-0.7279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementStrafeLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5595,4.4206,-0.6511) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.079,93.369) lpos=(-10.560,4.421,-0.651) lprev=(-10.706,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5595,4.4206,-0.6511) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7345,0.2725,0.9741) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,0.0325,0.8691) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,-2.1787,-0.4809) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5595,4.4206,-0.6311) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5595,4.4206,-0.6511) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.079,93.369) lpos=(-10.560,4.421,-0.651) lprev=(-10.706,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5595,4.4206,-0.6511) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7345,0.2725,0.9741) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,0.0325,0.8691) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,-2.1787,-0.4809) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5595,4.4206,-0.6311) mvmt=(0.1461,0.0936,0.0968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5595,4.3270,-0.7479) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.173,93.272) lpos=(-10.560,4.327,-0.748) lprev=(-10.706,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7345,0.1789,0.8773) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,-0.0611,0.7723) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,-2.2723,-0.5777) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5595,4.3270,-0.7279) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5595,4.3270,-1.4979) mvmt=(0.1461,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.173,92.522) lpos=(-10.560,4.327,-1.498) lprev=(-10.706,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7345,0.1789,0.1273) mvmt=(0.1461,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,-0.0611,0.0223) mvmt=(0.1461,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2405,-0.0611,0.0223) out=(0.2405,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5595,4.3270,-0.7479) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.060,7.173,93.272) lpos=(-10.560,4.327,-0.748) lprev=(-10.706,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7345,0.1789,0.8773) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,-0.0611,0.7723) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2405,-2.2723,-0.5777) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5595,4.3270,-0.7279) mvmt=(0.1461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4202,-0.6515) mvmt=(0.1455,0.0932,0.0964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4202,-0.6515) mvmt=(0.1455,0.0932,0.0964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.080,93.368) lpos=(-10.414,4.420,-0.651) lprev=(-10.560,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4202,-0.6515) mvmt=(0.1455,0.0932,0.0964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2721,0.9737) mvmt=(0.1455,0.0932,0.0964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0321,0.8687) mvmt=(0.1455,0.0932,0.0964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1791,-0.4813) mvmt=(0.1455,0.0932,0.0964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4202,-0.6315) mvmt=(0.1455,0.0932,0.0964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.080,93.368) lpos=(-10.414,4.420,-0.651) lprev=(-10.560,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.3270,-0.7479) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.173,93.272) lpos=(-10.414,4.327,-0.748) lprev=(-10.560,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5890,0.1789,0.8773) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-0.0611,0.7723) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.2723,-0.5777) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.3270,-0.7279) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.3270,-1.4979) mvmt=(0.1455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.173,92.522) lpos=(-10.414,4.327,-1.498) lprev=(-10.560,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5890,0.1789,0.1273) mvmt=(0.1455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-0.0611,0.0223) mvmt=(0.1455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3860,-0.0611,0.0223) out=(0.3860,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4140,4.3270,-0.7479) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.173,93.272) lpos=(-10.414,4.327,-0.748) lprev=(-10.560,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5890,0.1789,0.8773) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-0.0611,0.7723) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.2723,-0.5777) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.3270,-0.7279) mvmt=(0.1455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2620,4.4244,-0.6472) mvmt=(0.1520,0.0974,0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2620,4.4244,-0.6472) mvmt=(0.1520,0.0974,0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.076,93.373) lpos=(-10.262,4.424,-0.647) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2620,4.4244,-0.6472) mvmt=(0.1520,0.0974,0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4370,0.2763,0.9780) mvmt=(0.1520,0.0974,0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4370,0.2763,0.9780) out=(-0.4370,0.2763,1.3051) delta=(0.0000,0.0000,0.3271) deltaMag=0.3271 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4548 dpPos=0.2487 dpMove=-0.4243 iDist=0.5452 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.2620,4.4244,-0.3201) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.076,93.700) lpos=(-10.262,4.424,-0.320) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2620,4.4244,-0.3201) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[push-back] site=adjust_sphere in=(-10.2620,4.4244,-0.3201) out=(-10.2620,4.4244,-0.3201) 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.4548->0.4548 dpPos=-0.3201 dpMove=-0.2729 iDist=2.9319 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.2620,4.4244,-0.3201) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4370,0.2763,1.3051) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[push-back-disp] site=dispatch center=(0.5380,0.0363,1.2001) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[push-back-disp] site=dispatch center=(0.5380,-2.1750,-0.1499) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[push-back-disp] site=dispatch center=(0.4475,-2.6610,2.7044) mvmt=(-0.0299,0.1780,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[push-back-disp] site=dispatch center=(-10.2620,4.4244,-0.3001) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[push-back-disp] site=dispatch center=(-10.2620,4.4244,-0.3201) mvmt=(0.1520,0.0974,0.4278) collide=False insertType=1 objState=0x303 winterp=0.4548 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.076,93.700) lpos=(-10.262,4.424,-0.320) lprev=(-10.414,4.327,-0.748) 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.076,93.373) lpos=(-10.262,4.424,-0.647) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2620,4.3270,-0.7479) mvmt=(0.1520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.173,93.272) lpos=(-10.262,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4370,0.1789,0.8773) mvmt=(0.1520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4548 return=-1 +[push-back-disp] site=dispatch center=(-10.2620,4.3270,-0.7479) mvmt=(0.1520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.173,93.272) lpos=(-10.262,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4370,0.1789,0.8773) mvmt=(0.1520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4370,0.1789,0.8773) out=(-0.4370,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2620,4.3270,-0.4174) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.173,93.603) lpos=(-10.262,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2620,4.3270,-0.4174) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.2620,4.3270,-0.4174) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4370,0.1789,1.2078) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.5380,-0.0611,1.1028) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.5380,-2.2723,-0.2472) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.5371,-2.6992,2.6071) mvmt=(0.0596,0.1398,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.2620,4.3270,-0.3974) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.2620,4.3270,-0.4174) mvmt=(0.1520,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.173,93.603) lpos=(-10.262,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4245,-0.5187) mvmt=(0.0000,0.0975,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4245,-0.5187) mvmt=(0.0000,0.0975,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.075,93.501) lpos=(-10.414,4.425,-0.519) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4245,-0.5187) mvmt=(0.0000,0.0975,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2765,1.1065) mvmt=(0.0000,0.0975,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0365,1.0015) mvmt=(0.0000,0.0975,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1748,-0.3485) mvmt=(0.0000,0.0975,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3877,-2.8007,2.5058) mvmt=(-0.0897,0.0383,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4245,-0.4987) mvmt=(0.0000,0.0975,0.2292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.075,93.501) lpos=(-10.414,4.425,-0.519) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2705,4.4222,-0.5211) mvmt=(0.1436,0.0952,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2705,4.4222,-0.5211) mvmt=(0.1436,0.0952,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.078,93.499) lpos=(-10.270,4.422,-0.521) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2705,4.4222,-0.5211) mvmt=(0.1436,0.0952,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4455,0.2741,1.1041) mvmt=(0.1436,0.0952,0.2268) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4455,0.2741,1.1041) out=(-0.4455,0.2741,1.3030) 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.2705,4.4222,-0.3222) mvmt=(0.1436,0.0952,0.4257) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.078,93.698) lpos=(-10.270,4.422,-0.322) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2705,4.4222,-0.3222) mvmt=(0.1436,0.0952,0.4257) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.2705,4.4222,-0.3222) out=(-10.2705,4.4222,-0.3222) 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.3222 dpMove=-0.4012 iDist=1.9997 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.2705,4.4222,-0.3222) mvmt=(0.1436,0.0952,0.4257) 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.4455,0.2741,1.3030) mvmt=(0.1436,0.0952,0.4257) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5295,0.0341,1.1980) mvmt=(0.1436,0.0952,0.4257) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5295,-2.1771,-0.1520) mvmt=(0.1436,0.0952,0.4257) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4462,-2.6696,2.7023) mvmt=(-0.0312,0.1694,0.4257) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2705,4.4222,-0.3022) mvmt=(0.1436,0.0952,0.4257) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2705,4.4222,-0.3222) mvmt=(0.1436,0.0952,0.4257) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.078,93.698) lpos=(-10.270,4.422,-0.322) lprev=(-10.414,4.327,-0.748) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.078,93.499) lpos=(-10.270,4.422,-0.521) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2705,4.3270,-0.7479) mvmt=(0.1436,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.173,93.272) lpos=(-10.270,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4455,0.1789,0.8773) mvmt=(0.1436,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2705,4.3270,-0.7479) mvmt=(0.1436,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.173,93.272) lpos=(-10.270,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4455,0.1789,0.8773) mvmt=(0.1436,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4455,0.1789,0.8773) out=(-0.4455,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2705,4.3270,-0.4174) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.173,93.603) lpos=(-10.270,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2705,4.3270,-0.4174) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.2705,4.3270,-0.4174) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4455,0.1789,1.2078) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.5295,-0.0611,1.1028) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.5295,-2.2723,-0.2472) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.5338,-2.7069,2.6071) mvmt=(0.0563,0.1321,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.2705,4.3270,-0.3974) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.2705,4.3270,-0.4174) mvmt=(0.1436,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.770,7.173,93.603) lpos=(-10.270,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4322,-0.5110) mvmt=(0.0000,0.1052,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4322,-0.5110) mvmt=(0.0000,0.1052,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.068,93.509) lpos=(-10.414,4.432,-0.511) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4322,-0.5110) mvmt=(0.0000,0.1052,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2842,1.1142) mvmt=(0.0000,0.1052,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0442,1.0092) mvmt=(0.0000,0.1052,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1671,-0.3408) mvmt=(0.0000,0.1052,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3806,-2.7977,2.5135) mvmt=(-0.0968,0.0413,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4322,-0.4910) mvmt=(0.0000,0.1052,0.2369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.068,93.509) lpos=(-10.414,4.432,-0.511) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3943,4.4321,-0.5112) mvmt=(0.0198,0.1051,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3943,4.4321,-0.5112) mvmt=(0.0198,0.1051,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.068,93.509) lpos=(-10.394,4.432,-0.511) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3943,4.4321,-0.5112) mvmt=(0.0198,0.1051,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5693,0.2840,1.1140) mvmt=(0.0198,0.1051,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4057,0.0440,1.0090) mvmt=(0.0198,0.1051,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4057,-2.1672,-0.3410) mvmt=(0.0198,0.1051,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3886,-2.7796,2.5133) mvmt=(-0.0889,0.0594,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3943,4.4321,-0.4912) mvmt=(0.0198,0.1051,0.2367) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.068,93.509) lpos=(-10.394,4.432,-0.511) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3943,4.3270,-0.7479) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.272) lpos=(-10.394,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5693,0.1789,0.8773) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3943,4.3270,-0.7479) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.272) lpos=(-10.394,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5693,0.1789,0.8773) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5693,0.1789,0.8773) out=(-0.5693,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3943,4.3270,-0.4174) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.603) lpos=(-10.394,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3943,4.3270,-0.4174) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3943,4.3270,-0.4174) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5693,0.1789,1.2078) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4057,-0.0611,1.1028) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4057,-2.2723,-0.2472) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4852,-2.8208,2.6071) mvmt=(0.0078,0.0182,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3943,4.3270,-0.3974) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3943,4.3270,-0.4174) mvmt=(0.0198,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.603) lpos=(-10.394,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4286,-0.5146) mvmt=(0.0000,0.1016,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4286,-0.5146) mvmt=(0.0000,0.1016,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.071,93.505) lpos=(-10.414,4.429,-0.515) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4286,-0.5146) mvmt=(0.0000,0.1016,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2806,1.1106) mvmt=(0.0000,0.1016,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0406,1.0056) mvmt=(0.0000,0.1016,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1707,-0.3444) mvmt=(0.0000,0.1016,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3840,-2.7991,2.5099) mvmt=(-0.0935,0.0399,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4286,-0.4946) mvmt=(0.0000,0.1016,0.2333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.071,93.505) lpos=(-10.414,4.429,-0.515) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3948,4.4292,-0.5140) mvmt=(0.0192,0.1022,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.4292,-0.5140) mvmt=(0.0192,0.1022,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.071,93.506) lpos=(-10.395,4.429,-0.514) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3948,4.4292,-0.5140) mvmt=(0.0192,0.1022,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5698,0.2812,1.1112) mvmt=(0.0192,0.1022,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4052,0.0412,1.0062) mvmt=(0.0192,0.1022,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4052,-2.1701,-0.3438) mvmt=(0.0192,0.1022,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3910,-2.7812,2.5105) mvmt=(-0.0865,0.0578,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.4292,-0.4940) mvmt=(0.0192,0.1022,0.2339) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.071,93.506) lpos=(-10.395,4.429,-0.514) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.7479) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5698,0.1789,0.8773) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.7479) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5698,0.1789,0.8773) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5698,0.1789,0.8773) out=(-0.5698,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.4174) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.4174) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3948,4.3270,-0.4174) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5698,0.1789,1.2078) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4052,-0.0611,1.1028) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4052,-2.2723,-0.2472) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4850,-2.8213,2.6071) mvmt=(0.0075,0.0177,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.3974) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.4174) mvmt=(0.0192,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4268,-0.5165) mvmt=(0.0000,0.0998,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4268,-0.5165) mvmt=(0.0000,0.0998,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.073,93.504) lpos=(-10.414,4.427,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4268,-0.5165) mvmt=(0.0000,0.0998,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2787,1.1087) mvmt=(0.0000,0.0998,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0387,1.0037) mvmt=(0.0000,0.0998,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1725,-0.3463) mvmt=(0.0000,0.0998,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3857,-2.7998,2.5080) mvmt=(-0.0918,0.0391,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4268,-0.4965) mvmt=(0.0000,0.0998,0.2314) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.073,93.504) lpos=(-10.414,4.427,-0.516) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3948,4.4294,-0.5139) mvmt=(0.0193,0.1024,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.4294,-0.5139) mvmt=(0.0193,0.1024,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.071,93.506) lpos=(-10.395,4.429,-0.514) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3948,4.4294,-0.5139) mvmt=(0.0193,0.1024,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5698,0.2813,1.1113) mvmt=(0.0193,0.1024,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4052,0.0413,1.0063) mvmt=(0.0193,0.1024,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4052,-2.1700,-0.3437) mvmt=(0.0193,0.1024,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3909,-2.7811,2.5106) mvmt=(-0.0866,0.0579,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.4294,-0.4939) mvmt=(0.0193,0.1024,0.2340) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.071,93.506) lpos=(-10.395,4.429,-0.514) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.7479) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5698,0.1789,0.8773) 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.3948,4.3270,-0.7479) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5698,0.1789,0.8773) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5698,0.1789,0.8773) out=(-0.5698,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.4174) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.4174) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3948,4.3270,-0.4174) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5698,0.1789,1.2078) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4052,-0.0611,1.1028) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4052,-2.2723,-0.2472) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4850,-2.8213,2.6071) mvmt=(0.0076,0.0177,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.3974) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3948,4.3270,-0.4174) mvmt=(0.0193,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4275,-0.5158) mvmt=(0.0000,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4275,-0.5158) mvmt=(0.0000,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.073,93.504) lpos=(-10.414,4.427,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4275,-0.5158) mvmt=(0.0000,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2794,1.1094) mvmt=(0.0000,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0394,1.0044) mvmt=(0.0000,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1718,-0.3456) mvmt=(0.0000,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3850,-2.7995,2.5087) mvmt=(-0.0924,0.0394,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4275,-0.4958) mvmt=(0.0000,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.073,93.504) lpos=(-10.414,4.427,-0.516) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3951,4.4275,-0.5157) mvmt=(0.0189,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.4275,-0.5157) mvmt=(0.0189,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.072,93.504) lpos=(-10.395,4.428,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.4275,-0.5157) mvmt=(0.0189,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5701,0.2795,1.1095) mvmt=(0.0189,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4049,0.0395,1.0045) mvmt=(0.0189,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-2.1718,-0.3455) mvmt=(0.0189,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3924,-2.7821,2.5088) mvmt=(-0.0850,0.0568,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.4275,-0.4957) mvmt=(0.0189,0.1005,0.2322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.072,93.504) lpos=(-10.395,4.428,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.7479) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5701,0.1789,0.8773) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.7479) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5701,0.1789,0.8773) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5701,0.1789,0.8773) out=(-0.5701,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5701,0.1789,1.2078) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-0.0611,1.1028) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-2.2723,-0.2472) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4849,-2.8216,2.6071) mvmt=(0.0074,0.0174,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.3974) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4288,-0.5145) mvmt=(0.0000,0.1018,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4288,-0.5145) mvmt=(0.0000,0.1018,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.071,93.506) lpos=(-10.414,4.429,-0.514) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4288,-0.5145) mvmt=(0.0000,0.1018,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2807,1.1107) mvmt=(0.0000,0.1018,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0407,1.0057) mvmt=(0.0000,0.1018,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1705,-0.3443) mvmt=(0.0000,0.1018,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3838,-2.7990,2.5100) mvmt=(-0.0936,0.0399,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4288,-0.4945) mvmt=(0.0000,0.1018,0.2334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.071,93.506) lpos=(-10.414,4.429,-0.514) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3936,4.4357,-0.5076) mvmt=(0.0204,0.1087,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3936,4.4357,-0.5076) mvmt=(0.0204,0.1087,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.064,93.512) lpos=(-10.394,4.436,-0.508) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3936,4.4357,-0.5076) mvmt=(0.0204,0.1087,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5686,0.2876,1.1176) mvmt=(0.0204,0.1087,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4064,0.0476,1.0126) mvmt=(0.0204,0.1087,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4064,-2.1636,-0.3374) mvmt=(0.0204,0.1087,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3855,-2.7775,2.5169) mvmt=(-0.0920,0.0615,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3936,4.4357,-0.4876) mvmt=(0.0204,0.1087,0.2403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.064,93.512) lpos=(-10.394,4.436,-0.508) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3936,4.3270,-0.7479) mvmt=(0.0204,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.272) lpos=(-10.394,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5686,0.1789,0.8773) mvmt=(0.0204,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3936,4.3270,-0.7479) mvmt=(0.0204,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.272) lpos=(-10.394,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5686,0.1789,0.8773) mvmt=(0.0204,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5686,0.1789,0.8773) out=(-0.5686,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3936,4.3270,-0.4174) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.603) lpos=(-10.394,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3936,4.3270,-0.4174) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3936,4.3270,-0.4174) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5686,0.1789,1.2078) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4064,-0.0611,1.1028) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4064,-2.2723,-0.2472) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4855,-2.8202,2.6071) mvmt=(0.0080,0.0188,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3936,4.3270,-0.3974) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3936,4.3270,-0.4174) mvmt=(0.0204,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.173,93.603) lpos=(-10.394,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4292,-0.5141) mvmt=(0.0000,0.1022,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4292,-0.5141) mvmt=(0.0000,0.1022,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.071,93.506) lpos=(-10.414,4.429,-0.514) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4292,-0.5141) mvmt=(0.0000,0.1022,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2811,1.1111) mvmt=(0.0000,0.1022,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0411,1.0061) mvmt=(0.0000,0.1022,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1701,-0.3439) mvmt=(0.0000,0.1022,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3835,-2.7989,2.5104) mvmt=(-0.0940,0.0401,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4292,-0.4941) mvmt=(0.0000,0.1022,0.2338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.071,93.506) lpos=(-10.414,4.429,-0.514) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3951,4.4277,-0.5156) mvmt=(0.0190,0.1007,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.4277,-0.5156) mvmt=(0.0190,0.1007,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.072,93.504) lpos=(-10.395,4.428,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.4277,-0.5156) mvmt=(0.0190,0.1007,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5701,0.2796,1.1096) mvmt=(0.0190,0.1007,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4049,0.0396,1.0046) mvmt=(0.0190,0.1007,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-2.1716,-0.3454) mvmt=(0.0190,0.1007,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3923,-2.7820,2.5089) mvmt=(-0.0852,0.0569,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.4277,-0.4956) mvmt=(0.0190,0.1007,0.2324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.072,93.504) lpos=(-10.395,4.428,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5701,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5701,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5701,0.1789,0.8773) out=(-0.5701,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3951,4.3270,-0.4174) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5701,0.1789,1.2078) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-0.0611,1.1028) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-2.2723,-0.2472) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4849,-2.8215,2.6071) mvmt=(0.0074,0.0174,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.3974) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0190,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4313,-0.5119) mvmt=(0.0000,0.1044,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4313,-0.5119) mvmt=(0.0000,0.1044,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.069,93.508) lpos=(-10.414,4.431,-0.512) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4313,-0.5119) mvmt=(0.0000,0.1044,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2833,1.1133) mvmt=(0.0000,0.1044,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0433,1.0083) mvmt=(0.0000,0.1044,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1680,-0.3417) mvmt=(0.0000,0.1044,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3815,-2.7980,2.5126) mvmt=(-0.0960,0.0409,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4313,-0.4919) mvmt=(0.0000,0.1044,0.2360) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.069,93.508) lpos=(-10.414,4.431,-0.512) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3951,4.4276,-0.5156) mvmt=(0.0189,0.1006,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.4276,-0.5156) mvmt=(0.0189,0.1006,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.072,93.504) lpos=(-10.395,4.428,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.4276,-0.5156) mvmt=(0.0189,0.1006,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5701,0.2796,1.1096) mvmt=(0.0189,0.1006,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4049,0.0396,1.0046) mvmt=(0.0189,0.1006,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-2.1717,-0.3454) mvmt=(0.0189,0.1006,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3923,-2.7821,2.5089) mvmt=(-0.0851,0.0569,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.4276,-0.4956) mvmt=(0.0189,0.1006,0.2323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.072,93.504) lpos=(-10.395,4.428,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.7479) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5701,0.1789,0.8773) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.7479) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.272) lpos=(-10.395,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5701,0.1789,0.8773) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5701,0.1789,0.8773) out=(-0.5701,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5701,0.1789,1.2078) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-0.0611,1.1028) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4049,-2.2723,-0.2472) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4849,-2.8216,2.6071) mvmt=(0.0074,0.0174,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.3974) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3951,4.3270,-0.4174) mvmt=(0.0189,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.895,7.173,93.603) lpos=(-10.395,4.327,-0.417) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4140,4.4271,-0.5162) mvmt=(0.0000,0.1001,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4271,-0.5162) mvmt=(0.0000,0.1001,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.073,93.504) lpos=(-10.414,4.427,-0.516) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4140,4.4271,-0.5162) mvmt=(0.0000,0.1001,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5890,0.2790,1.1090) mvmt=(0.0000,0.1001,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,0.0390,1.0040) mvmt=(0.0000,0.1001,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3860,-2.1722,-0.3460) mvmt=(0.0000,0.1001,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3854,-2.7997,2.5083) mvmt=(-0.0920,0.0393,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4140,4.4271,-0.4962) mvmt=(0.0000,0.1001,0.2317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.073,93.504) lpos=(-10.414,4.427,-0.516) lprev=(-10.414,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5221,4.4365,-0.5068) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.022,7.064,93.513) lpos=(-10.522,4.436,-0.507) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5221,4.4365,-0.5068) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6971,0.2884,1.1184) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,0.0484,1.0134) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,-2.1629,-0.3366) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3344,-2.8954,2.5177) mvmt=(-0.1431,-0.0565,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5221,4.4365,-0.4868) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5221,4.4365,-0.5068) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.022,7.064,93.513) lpos=(-10.522,4.436,-0.507) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5221,4.4365,-0.5068) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6971,0.2884,1.1184) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,0.0484,1.0134) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,-2.1629,-0.3366) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3344,-2.8954,2.5177) mvmt=(-0.1431,-0.0565,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5221,4.4365,-0.4868) mvmt=(-0.1081,0.1095,0.2411) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5221,4.3270,-0.7479) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.022,7.173,93.272) lpos=(-10.522,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6971,0.1789,0.8773) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,-0.0611,0.7723) mvmt=(-0.1081,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,-2.2723,-0.5777) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5221,4.3270,-0.7279) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5221,4.3270,-1.4979) mvmt=(-0.1081,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.022,7.173,92.522) lpos=(-10.522,4.327,-1.498) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6971,0.1789,0.1273) mvmt=(-0.1081,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,-0.0611,0.0223) mvmt=(-0.1081,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2779,-0.0611,0.0223) out=(0.2779,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.5221,4.3270,-0.7479) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.022,7.173,93.272) lpos=(-10.522,4.327,-0.748) lprev=(-10.414,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6971,0.1789,0.8773) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,-0.0611,0.7723) mvmt=(-0.1081,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2779,-2.2723,-0.5777) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5221,4.3270,-0.7279) mvmt=(-0.1081,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6280,4.4307,-0.6407) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.069,93.379) lpos=(-10.628,4.431,-0.641) lprev=(-10.522,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6280,4.4307,-0.6407) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8030,0.2826,0.9845) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,0.0426,0.8795) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,-2.1687,-0.4705) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6280,4.4307,-0.6207) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6280,4.4307,-0.6407) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.069,93.379) lpos=(-10.628,4.431,-0.641) lprev=(-10.522,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6280,4.4307,-0.6407) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8030,0.2826,0.9845) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,0.0426,0.8795) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,-2.1687,-0.4705) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6280,4.4307,-0.6207) mvmt=(-0.1059,0.1037,0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6280,4.3270,-0.7479) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.173,93.272) lpos=(-10.628,4.327,-0.748) lprev=(-10.522,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8030,0.1789,0.8773) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,-0.0611,0.7723) mvmt=(-0.1059,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,-2.2723,-0.5777) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6280,4.3270,-0.7279) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6280,4.3270,-1.4979) mvmt=(-0.1059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.173,92.522) lpos=(-10.628,4.327,-1.498) lprev=(-10.522,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8030,0.1789,0.1273) mvmt=(-0.1059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,-0.0611,0.0223) mvmt=(-0.1059,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1720,-0.0611,0.0223) out=(0.1720,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6280,4.3270,-0.7479) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.173,93.272) lpos=(-10.628,4.327,-0.748) lprev=(-10.522,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8030,0.1789,0.8773) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,-0.0611,0.7723) mvmt=(-0.1059,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1720,-2.2723,-0.5777) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6280,4.3270,-0.7279) mvmt=(-0.1059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7349,4.4316,-0.6397) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.068,93.380) lpos=(-10.735,4.432,-0.640) lprev=(-10.628,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7349,4.4316,-0.6397) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9099,0.2835,0.9855) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,0.0435,0.8805) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,-2.1677,-0.4695) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7349,4.4316,-0.6197) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7349,4.4316,-0.6397) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.068,93.380) lpos=(-10.735,4.432,-0.640) lprev=(-10.628,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7349,4.4316,-0.6397) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9099,0.2835,0.9855) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,0.0435,0.8805) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,-2.1677,-0.4695) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7349,4.4316,-0.6197) mvmt=(-0.1069,0.1046,0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7349,4.3270,-0.7479) mvmt=(-0.1069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.173,93.272) lpos=(-10.735,4.327,-0.748) lprev=(-10.628,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9099,0.1789,0.8773) mvmt=(-0.1069,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,-0.0611,0.7723) mvmt=(-0.1069,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,-2.2723,-0.5777) mvmt=(-0.1069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7349,4.3270,-0.7279) mvmt=(-0.1069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7349,4.3270,-1.4979) mvmt=(-0.1069,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.173,92.522) lpos=(-10.735,4.327,-1.498) lprev=(-10.628,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9099,0.1789,0.1273) mvmt=(-0.1069,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,-0.0611,0.0223) mvmt=(-0.1069,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0651,-0.0611,0.0223) out=(0.0651,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7349,4.3270,-0.7479) mvmt=(-0.1069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.173,93.272) lpos=(-10.735,4.327,-0.748) lprev=(-10.628,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9099,0.1789,0.8773) mvmt=(-0.1069,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,-0.0611,0.7723) mvmt=(-0.1069,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0651,-2.2723,-0.5777) mvmt=(-0.1069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7349,4.3270,-0.7279) mvmt=(-0.1069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8423,4.4320,-0.6393) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.068,93.381) lpos=(-10.842,4.432,-0.639) lprev=(-10.735,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8423,4.4320,-0.6393) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0173,0.2840,0.9859) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,0.0440,0.8809) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,-2.1673,-0.4691) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8423,4.4320,-0.6193) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8423,4.4320,-0.6393) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.068,93.381) lpos=(-10.842,4.432,-0.639) lprev=(-10.735,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8423,4.4320,-0.6393) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0173,0.2840,0.9859) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,0.0440,0.8809) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,-2.1673,-0.4691) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8423,4.4320,-0.6193) mvmt=(-0.1073,0.1050,0.1086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8423,4.3270,-0.7479) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.173,93.272) lpos=(-10.842,4.327,-0.748) lprev=(-10.735,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0173,0.1789,0.8773) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,-0.0611,0.7723) mvmt=(-0.1073,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,-2.2723,-0.5777) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8423,4.3270,-0.7279) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8423,4.3270,-1.4979) mvmt=(-0.1073,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.173,92.522) lpos=(-10.842,4.327,-1.498) lprev=(-10.735,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0173,0.1789,0.1273) mvmt=(-0.1073,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,-0.0611,0.0223) mvmt=(-0.1073,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0423,-0.0611,0.0223) out=(-0.0423,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8423,4.3270,-0.7479) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.342,7.173,93.272) lpos=(-10.842,4.327,-0.748) lprev=(-10.735,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0173,0.1789,0.8773) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,-0.0611,0.7723) mvmt=(-0.1073,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0423,-2.2723,-0.5777) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8423,4.3270,-0.7279) mvmt=(-0.1073,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8226,4.4278,-0.6436) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.072,93.376) lpos=(-10.823,4.428,-0.644) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8226,4.4278,-0.6436) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9976,0.2798,0.9816) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0226,0.0398,0.8766) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0226,-2.1715,-0.4734) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8226,4.4278,-0.6236) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8226,4.4278,-0.6436) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.072,93.376) lpos=(-10.823,4.428,-0.644) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8226,4.4278,-0.6436) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9976,0.2798,0.9816) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0226,0.0398,0.8766) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0226,-2.1715,-0.4734) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8226,4.4278,-0.6236) mvmt=(0.0196,0.1008,0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8226,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.173,93.272) lpos=(-10.823,4.327,-0.748) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9976,0.1789,0.8773) 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.0226,-0.0611,0.7723) 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.0226,-2.2723,-0.5777) 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.8226,4.3270,-0.7279) 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.8226,4.3270,-1.4979) mvmt=(0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.173,92.522) lpos=(-10.823,4.327,-1.498) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9976,0.1789,0.1273) 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.0226,-0.0611,0.0223) 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.0226,-0.0611,0.0223) out=(-0.0226,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8226,4.3270,-0.7479) mvmt=(0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.173,93.272) lpos=(-10.823,4.327,-0.748) lprev=(-10.842,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9976,0.1789,0.8773) 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.0226,-0.0611,0.7723) 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.0226,-2.2723,-0.5777) 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.8226,4.3270,-0.7279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8036,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.304,7.076,93.373) lpos=(-10.804,4.424,-0.647) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8036,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9787,0.2763,0.9781) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,0.0364,0.8731) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,-2.1749,-0.4770) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8036,4.4244,-0.6272) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8036,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.304,7.076,93.373) lpos=(-10.804,4.424,-0.647) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8036,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9787,0.2763,0.9781) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,0.0364,0.8731) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,-2.1749,-0.4770) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8036,4.4244,-0.6272) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8036,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.304,7.173,93.272) lpos=(-10.804,4.327,-0.748) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9787,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,-0.0611,0.7723) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,-2.2723,-0.5777) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8036,4.3270,-0.7279) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8036,4.3270,-1.4979) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.304,7.173,92.522) lpos=(-10.804,4.327,-1.498) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9787,0.1789,0.1273) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,-0.0611,0.0223) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0036,-0.0611,0.0223) out=(-0.0036,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8036,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.304,7.173,93.272) lpos=(-10.804,4.327,-0.748) lprev=(-10.823,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9787,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,-0.0611,0.7723) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0036,-2.2723,-0.5777) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8036,4.3270,-0.7279) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7847,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.285,7.076,93.373) lpos=(-10.785,4.424,-0.647) lprev=(-10.804,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7847,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9597,0.2764,0.9781) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,0.0364,0.8731) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,-2.1749,-0.4769) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7847,4.4244,-0.6271) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7847,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.285,7.076,93.373) lpos=(-10.785,4.424,-0.647) lprev=(-10.804,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7847,4.4244,-0.6471) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9597,0.2764,0.9781) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,0.0364,0.8731) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,-2.1749,-0.4769) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7847,4.4244,-0.6271) mvmt=(0.0190,0.0974,0.1008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7847,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.285,7.173,93.272) lpos=(-10.785,4.327,-0.748) lprev=(-10.804,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9597,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,-0.0611,0.7723) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,-2.2723,-0.5777) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7847,4.3270,-0.7279) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7847,4.3270,-1.4979) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.285,7.173,92.522) lpos=(-10.785,4.327,-1.498) lprev=(-10.804,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9597,0.1789,0.1273) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,-0.0611,0.0223) mvmt=(0.0190,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0153,-0.0611,0.0223) out=(0.0153,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7847,4.3270,-0.7479) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.285,7.173,93.272) lpos=(-10.785,4.327,-0.748) lprev=(-10.804,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9597,0.1789,0.8773) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,-0.0611,0.7723) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0153,-2.2723,-0.5777) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7847,4.3270,-0.7279) mvmt=(0.0190,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7655,4.4254,-0.6461) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.075,93.374) lpos=(-10.766,4.425,-0.646) lprev=(-10.785,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7655,4.4254,-0.6461) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9405,0.2773,0.9790) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,0.0373,0.8741) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,-2.1739,-0.4760) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7655,4.4254,-0.6262) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7655,4.4254,-0.6461) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.075,93.374) lpos=(-10.766,4.425,-0.646) lprev=(-10.785,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7655,4.4254,-0.6461) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9405,0.2773,0.9790) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,0.0373,0.8741) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,-2.1739,-0.4760) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7655,4.4254,-0.6262) mvmt=(0.0192,0.0984,0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7655,4.3270,-0.7479) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.173,93.272) lpos=(-10.766,4.327,-0.748) lprev=(-10.785,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9405,0.1789,0.8773) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,-0.0611,0.7723) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,-2.2723,-0.5777) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7655,4.3270,-0.7279) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7655,4.3270,-1.4979) mvmt=(0.0192,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.173,92.522) lpos=(-10.766,4.327,-1.498) lprev=(-10.785,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9405,0.1789,0.1273) mvmt=(0.0192,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,-0.0611,0.0223) mvmt=(0.0192,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0345,-0.0611,0.0223) out=(0.0345,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7655,4.3270,-0.7479) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.173,93.272) lpos=(-10.766,4.327,-0.748) lprev=(-10.785,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9405,0.1789,0.8773) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,-0.0611,0.7723) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0345,-2.2723,-0.5777) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7655,4.3270,-0.7279) mvmt=(0.0192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7464,4.4251,-0.6465) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.246,7.075,93.374) lpos=(-10.746,4.425,-0.646) lprev=(-10.766,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7464,4.4251,-0.6465) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9214,0.2770,0.9787) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,0.0370,0.8737) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,-2.1743,-0.4763) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7464,4.4251,-0.6265) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7464,4.4251,-0.6465) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.246,7.075,93.374) lpos=(-10.746,4.425,-0.646) lprev=(-10.766,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7464,4.4251,-0.6465) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9214,0.2770,0.9787) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,0.0370,0.8737) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,-2.1743,-0.4763) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7464,4.4251,-0.6265) mvmt=(0.0191,0.0981,0.1014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7464,4.3270,-0.7479) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.246,7.173,93.272) lpos=(-10.746,4.327,-0.748) lprev=(-10.766,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9214,0.1789,0.8773) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,-0.0611,0.7723) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,-2.2723,-0.5777) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7464,4.3270,-0.7279) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7464,4.3270,-1.4979) mvmt=(0.0191,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.246,7.173,92.522) lpos=(-10.746,4.327,-1.498) lprev=(-10.766,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9214,0.1789,0.1273) mvmt=(0.0191,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,-0.0611,0.0223) mvmt=(0.0191,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0536,-0.0611,0.0223) out=(0.0536,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7464,4.3270,-0.7479) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.246,7.173,93.272) lpos=(-10.746,4.327,-0.748) lprev=(-10.766,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9214,0.1789,0.8773) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,-0.0611,0.7723) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0536,-2.2723,-0.5777) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7464,4.3270,-0.7279) mvmt=(0.0191,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7275,4.4242,-0.6473) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.076,93.373) lpos=(-10.727,4.424,-0.647) lprev=(-10.746,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7275,4.4242,-0.6473) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9025,0.2762,0.9779) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0725,0.0362,0.8729) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0725,-2.1751,-0.4771) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7275,4.4242,-0.6273) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7275,4.4242,-0.6473) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.076,93.373) lpos=(-10.727,4.424,-0.647) lprev=(-10.746,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7275,4.4242,-0.6473) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9025,0.2762,0.9779) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0725,0.0362,0.8729) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0725,-2.1751,-0.4771) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7275,4.4242,-0.6273) mvmt=(0.0189,0.0972,0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7275,4.3270,-0.7479) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.173,93.272) lpos=(-10.727,4.327,-0.748) lprev=(-10.746,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9025,0.1789,0.8773) 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.0725,-0.0611,0.7723) 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.0725,-2.2723,-0.5777) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7275,4.3270,-0.7279) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7275,4.3270,-1.4979) mvmt=(0.0189,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.173,92.522) lpos=(-10.727,4.327,-1.498) lprev=(-10.746,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9025,0.1789,0.1273) 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.0725,-0.0611,0.0223) 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.0725,-0.0611,0.0223) out=(0.0725,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7275,4.3270,-0.7479) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.227,7.173,93.272) lpos=(-10.727,4.327,-0.748) lprev=(-10.746,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9025,0.1789,0.8773) 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.0725,-0.0611,0.7723) 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.0725,-2.2723,-0.5777) mvmt=(0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7275,4.3270,-0.7279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7113,4.4268,-0.6447) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.073,93.375) lpos=(-10.711,4.427,-0.645) lprev=(-10.727,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7113,4.4268,-0.6447) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8863,0.2787,0.9805) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0887,0.0387,0.8755) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0887,-2.1725,-0.4745) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7113,4.4268,-0.6247) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7113,4.4268,-0.6447) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.073,93.375) lpos=(-10.711,4.427,-0.645) lprev=(-10.727,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7113,4.4268,-0.6447) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8863,0.2787,0.9805) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0887,0.0387,0.8755) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0887,-2.1725,-0.4745) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7113,4.4268,-0.6247) mvmt=(0.0162,0.0998,0.1032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7113,4.3270,-0.7479) mvmt=(0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.173,93.272) lpos=(-10.711,4.327,-0.748) lprev=(-10.727,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8863,0.1789,0.8773) 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.0887,-0.0611,0.7723) 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.0887,-2.2723,-0.5777) mvmt=(0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7113,4.3270,-0.7279) mvmt=(0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7113,4.3270,-1.4979) mvmt=(0.0162,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.173,92.522) lpos=(-10.711,4.327,-1.498) lprev=(-10.727,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8863,0.1789,0.1273) 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.0887,-0.0611,0.0223) 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.0887,-0.0611,0.0223) out=(0.0887,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7113,4.3270,-0.7479) mvmt=(0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.173,93.272) lpos=(-10.711,4.327,-0.748) lprev=(-10.727,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8863,0.1789,0.8773) 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.0887,-0.0611,0.7723) 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.0887,-2.2723,-0.5777) mvmt=(0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7113,4.3270,-0.7279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7117,4.4259,-0.6456) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.212,7.074,93.374) lpos=(-10.712,4.426,-0.646) lprev=(-10.711,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7117,4.4259,-0.6456) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8867,0.2779,0.9796) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,0.0379,0.8746) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,-2.1734,-0.4754) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7117,4.4259,-0.6256) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7117,4.4259,-0.6456) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.212,7.074,93.374) lpos=(-10.712,4.426,-0.646) lprev=(-10.711,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7117,4.4259,-0.6456) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8867,0.2779,0.9796) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,0.0379,0.8746) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,-2.1734,-0.4754) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7117,4.4259,-0.6256) mvmt=(-0.0004,0.0989,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7117,4.3270,-0.7479) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.212,7.173,93.272) lpos=(-10.712,4.327,-0.748) lprev=(-10.711,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8867,0.1789,0.8773) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,-0.0611,0.7723) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,-2.2723,-0.5777) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7117,4.3270,-0.7279) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7117,4.3270,-1.4979) mvmt=(-0.0004,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.212,7.173,92.522) lpos=(-10.712,4.327,-1.498) lprev=(-10.711,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8867,0.1789,0.1273) mvmt=(-0.0004,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,-0.0611,0.0223) mvmt=(-0.0004,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0883,-0.0611,0.0223) out=(0.0883,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7117,4.3270,-0.7479) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.212,7.173,93.272) lpos=(-10.712,4.327,-0.748) lprev=(-10.711,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8867,0.1789,0.8773) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,-0.0611,0.7723) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0883,-2.2723,-0.5777) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7117,4.3270,-0.7279) mvmt=(-0.0004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7288,4.4262,-0.6453) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.074,93.375) lpos=(-10.729,4.426,-0.645) lprev=(-10.712,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7288,4.4262,-0.6453) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9038,0.2782,0.9799) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0712,0.0382,0.8749) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0712,-2.1731,-0.4751) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7288,4.4262,-0.6253) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7288,4.4262,-0.6453) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.074,93.375) lpos=(-10.729,4.426,-0.645) lprev=(-10.712,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7288,4.4262,-0.6453) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9038,0.2782,0.9799) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0712,0.0382,0.8749) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0712,-2.1731,-0.4751) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7288,4.4262,-0.6253) mvmt=(-0.0171,0.0992,0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7288,4.3270,-0.7479) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.173,93.272) lpos=(-10.729,4.327,-0.748) lprev=(-10.712,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9038,0.1789,0.8773) 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.0712,-0.0611,0.7723) 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.0712,-2.2723,-0.5777) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7288,4.3270,-0.7279) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7288,4.3270,-1.4979) mvmt=(-0.0171,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.173,92.522) lpos=(-10.729,4.327,-1.498) lprev=(-10.712,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9038,0.1789,0.1273) 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.0712,-0.0611,0.0223) 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.0712,-0.0611,0.0223) out=(0.0712,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7288,4.3270,-0.7479) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.173,93.272) lpos=(-10.729,4.327,-0.748) lprev=(-10.712,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9038,0.1789,0.8773) 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.0712,-0.0611,0.7723) 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.0712,-2.2723,-0.5777) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7288,4.3270,-0.7279) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7628,4.4258,-0.6457) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.263,7.074,93.374) lpos=(-10.763,4.426,-0.646) lprev=(-10.729,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7628,4.4258,-0.6457) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9378,0.2778,0.9795) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,0.0378,0.8745) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,-2.1735,-0.4755) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7628,4.4258,-0.6257) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7628,4.4258,-0.6457) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.263,7.074,93.374) lpos=(-10.763,4.426,-0.646) lprev=(-10.729,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7628,4.4258,-0.6457) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9378,0.2778,0.9795) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,0.0378,0.8745) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,-2.1735,-0.4755) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7628,4.4258,-0.6257) mvmt=(-0.0340,0.0988,0.1023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7628,4.3270,-0.7479) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.263,7.173,93.272) lpos=(-10.763,4.327,-0.748) lprev=(-10.729,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9378,0.1789,0.8773) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,-0.0611,0.7723) mvmt=(-0.0340,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,-2.2723,-0.5777) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7628,4.3270,-0.7279) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7628,4.3270,-1.4979) mvmt=(-0.0340,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.263,7.173,92.522) lpos=(-10.763,4.327,-1.498) lprev=(-10.729,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9378,0.1789,0.1273) mvmt=(-0.0340,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,-0.0611,0.0223) mvmt=(-0.0340,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0372,-0.0611,0.0223) out=(0.0372,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7628,4.3270,-0.7479) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.263,7.173,93.272) lpos=(-10.763,4.327,-0.748) lprev=(-10.729,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9378,0.1789,0.8773) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,-0.0611,0.7723) mvmt=(-0.0340,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0372,-2.2723,-0.5777) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7628,4.3270,-0.7279) mvmt=(-0.0340,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8137,4.4249,-0.6467) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.075,93.373) lpos=(-10.814,4.425,-0.647) lprev=(-10.763,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8137,4.4249,-0.6467) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9887,0.2768,0.9785) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,0.0368,0.8736) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,-2.1744,-0.4765) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8137,4.4249,-0.6267) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8137,4.4249,-0.6467) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.075,93.373) lpos=(-10.814,4.425,-0.647) lprev=(-10.763,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8137,4.4249,-0.6467) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9887,0.2768,0.9785) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,0.0368,0.8736) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,-2.1744,-0.4765) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8137,4.4249,-0.6267) mvmt=(-0.0509,0.0979,0.1013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8137,4.3270,-0.7479) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.173,93.272) lpos=(-10.814,4.327,-0.748) lprev=(-10.763,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9887,0.1789,0.8773) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,-0.0611,0.7723) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,-2.2723,-0.5777) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8137,4.3270,-0.7279) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8137,4.3270,-1.4979) mvmt=(-0.0509,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.173,92.522) lpos=(-10.814,4.327,-1.498) lprev=(-10.763,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9887,0.1789,0.1273) mvmt=(-0.0509,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,-0.0611,0.0223) mvmt=(-0.0509,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0137,-0.0611,0.0223) out=(-0.0137,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8137,4.3270,-0.7479) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.173,93.272) lpos=(-10.814,4.327,-0.748) lprev=(-10.763,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9887,0.1789,0.8773) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,-0.0611,0.7723) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0137,-2.2723,-0.5777) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8137,4.3270,-0.7279) mvmt=(-0.0509,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8782,4.4193,-0.6525) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.378,7.081,93.368) lpos=(-10.878,4.419,-0.652) lprev=(-10.814,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8782,4.4193,-0.6525) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0532,0.2712,0.9727) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,0.0312,0.8678) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,-2.1800,-0.4823) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8782,4.4193,-0.6325) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8782,4.4193,-0.6525) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.378,7.081,93.368) lpos=(-10.878,4.419,-0.652) lprev=(-10.814,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8782,4.4193,-0.6525) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0532,0.2712,0.9727) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,0.0312,0.8678) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,-2.1800,-0.4823) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8782,4.4193,-0.6325) mvmt=(-0.0645,0.0923,0.0955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8782,4.3270,-0.7479) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.378,7.173,93.272) lpos=(-10.878,4.327,-0.748) lprev=(-10.814,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0532,0.1789,0.8773) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,-0.0611,0.7723) mvmt=(-0.0645,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,-2.2723,-0.5777) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8782,4.3270,-0.7279) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8782,4.3270,-1.4979) mvmt=(-0.0645,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.378,7.173,92.522) lpos=(-10.878,4.327,-1.498) lprev=(-10.814,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0532,0.1789,0.1273) mvmt=(-0.0645,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,-0.0611,0.0223) mvmt=(-0.0645,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0782,-0.0611,0.0223) out=(-0.0782,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8782,4.3270,-0.7479) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.378,7.173,93.272) lpos=(-10.878,4.327,-0.748) lprev=(-10.814,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0532,0.1789,0.8773) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,-0.0611,0.7723) mvmt=(-0.0645,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0782,-2.2723,-0.5777) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8782,4.3270,-0.7279) mvmt=(-0.0645,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9593,4.4181,-0.6536) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.082,93.366) lpos=(-10.959,4.418,-0.654) lprev=(-10.878,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9593,4.4181,-0.6536) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1343,0.2701,0.9715) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,0.0301,0.8666) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,-2.1812,-0.4835) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9593,4.4181,-0.6337) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9593,4.4181,-0.6536) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.082,93.366) lpos=(-10.959,4.418,-0.654) lprev=(-10.878,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9593,4.4181,-0.6536) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1343,0.2701,0.9715) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,0.0301,0.8666) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,-2.1812,-0.4835) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9593,4.4181,-0.6337) mvmt=(-0.0811,0.0911,0.0943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9593,4.3270,-0.7479) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.173,93.272) lpos=(-10.959,4.327,-0.748) lprev=(-10.878,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1343,0.1789,0.8773) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,-0.0611,0.7723) mvmt=(-0.0811,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,-2.2723,-0.5777) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9593,4.3270,-0.7279) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9593,4.3270,-1.4979) mvmt=(-0.0811,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.173,92.522) lpos=(-10.959,4.327,-1.498) lprev=(-10.878,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1343,0.1789,0.1273) mvmt=(-0.0811,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,-0.0611,0.0223) mvmt=(-0.0811,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1593,-0.0611,0.0223) out=(-0.1593,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9593,4.3270,-0.7479) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.173,93.272) lpos=(-10.959,4.327,-0.748) lprev=(-10.878,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1343,0.1789,0.8773) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,-0.0611,0.7723) mvmt=(-0.0811,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1593,-2.2723,-0.5777) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9593,4.3270,-0.7279) mvmt=(-0.0811,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0551,4.4190,-0.6528) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.081,93.367) lpos=(-11.055,4.419,-0.653) lprev=(-10.959,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4190,-0.6528) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2709,0.9724) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0309,0.8674) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1803,-0.4826) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4190,-0.6328) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4190,-0.6528) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.081,93.367) lpos=(-11.055,4.419,-0.653) lprev=(-10.959,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4190,-0.6528) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2709,0.9724) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0309,0.8674) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1803,-0.4826) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4190,-0.6328) mvmt=(-0.0958,0.0920,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3270,-0.7479) mvmt=(-0.0958,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.173,93.272) lpos=(-11.055,4.327,-0.748) lprev=(-10.959,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.1789,0.8773) mvmt=(-0.0958,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0611,0.7723) mvmt=(-0.0958,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2723,-0.5777) mvmt=(-0.0958,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3270,-0.7279) mvmt=(-0.0958,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3270,-1.4979) mvmt=(-0.0958,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.173,92.522) lpos=(-11.055,4.327,-1.498) lprev=(-10.959,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.1789,0.1273) mvmt=(-0.0958,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0611,0.0223) mvmt=(-0.0958,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2551,-0.0611,0.0223) out=(-0.2551,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0551,4.3270,-0.7479) mvmt=(-0.0958,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.173,93.272) lpos=(-11.055,4.327,-0.748) lprev=(-10.959,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.1789,0.8773) mvmt=(-0.0958,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0611,0.7723) mvmt=(-0.0958,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2723,-0.5777) mvmt=(-0.0958,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3270,-0.7279) mvmt=(-0.0958,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1489,4.4170,-0.6548) mvmt=(-0.0938,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1489,4.4170,-0.6548) mvmt=(-0.0938,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.649,7.083,93.365) lpos=(-11.149,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1489,4.4170,-0.6548) mvmt=(-0.0938,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3239,0.2690,0.9704) mvmt=(-0.0938,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3489,0.0290,0.8654) mvmt=(-0.0938,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3489,-2.1823,-0.4846) mvmt=(-0.0938,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1489,4.4170,-0.6348) mvmt=(-0.0938,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.649,7.083,93.365) lpos=(-11.149,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.083,93.365) lpos=(-11.055,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2690,0.9704) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0290,0.8654) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1823,-0.4846) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6348) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.083,93.365) lpos=(-11.055,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2690,0.9704) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0290,0.8654) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1823,-0.4846) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6348) mvmt=(0.0000,0.0900,0.0931) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1458,4.4140,-0.6579) mvmt=(-0.0907,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1458,4.4140,-0.6579) mvmt=(-0.0907,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.086,93.362) lpos=(-11.146,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1458,4.4140,-0.6579) mvmt=(-0.0907,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3208,0.2660,0.9673) mvmt=(-0.0907,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3458,0.0260,0.8623) mvmt=(-0.0907,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3458,-2.1853,-0.4877) mvmt=(-0.0907,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1458,4.4140,-0.6379) mvmt=(-0.0907,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.086,93.362) lpos=(-11.146,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4140,-0.6579) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.086,93.362) lpos=(-11.055,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4140,-0.6579) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2660,0.9673) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0260,0.8623) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1853,-0.4877) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4140,-0.6379) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4140,-0.6579) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.086,93.362) lpos=(-11.055,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4140,-0.6579) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2660,0.9673) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0260,0.8623) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1853,-0.4877) mvmt=(0.0000,0.0870,0.0900) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4140,-0.6379) mvmt=(0.0000,0.0870,0.0900) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1470,4.4152,-0.6566) mvmt=(-0.0919,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1470,4.4152,-0.6566) mvmt=(-0.0919,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.647,7.085,93.363) lpos=(-11.147,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1470,4.4152,-0.6566) mvmt=(-0.0919,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3220,0.2672,0.9686) mvmt=(-0.0919,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3470,0.0272,0.8636) mvmt=(-0.0919,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3470,-2.1841,-0.4864) mvmt=(-0.0919,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1470,4.4152,-0.6366) mvmt=(-0.0919,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.647,7.085,93.363) lpos=(-11.147,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4152,-0.6566) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.085,93.363) lpos=(-11.055,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4152,-0.6566) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2672,0.9686) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0272,0.8636) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1841,-0.4864) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4152,-0.6366) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4152,-0.6566) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.085,93.363) lpos=(-11.055,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4152,-0.6566) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2672,0.9686) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0272,0.8636) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1841,-0.4864) mvmt=(0.0000,0.0882,0.0913) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4152,-0.6366) mvmt=(0.0000,0.0882,0.0913) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1488,4.4170,-0.6548) mvmt=(-0.0937,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1488,4.4170,-0.6548) mvmt=(-0.0937,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.649,7.083,93.365) lpos=(-11.149,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1488,4.4170,-0.6548) mvmt=(-0.0937,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3238,0.2689,0.9704) mvmt=(-0.0937,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3488,0.0289,0.8654) mvmt=(-0.0937,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3488,-2.1823,-0.4846) mvmt=(-0.0937,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1488,4.4170,-0.6348) mvmt=(-0.0937,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.649,7.083,93.365) lpos=(-11.149,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.083,93.365) lpos=(-11.055,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2689,0.9704) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0289,0.8654) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1823,-0.4846) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6348) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.083,93.365) lpos=(-11.055,4.417,-0.655) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6548) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2689,0.9704) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0289,0.8654) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1823,-0.4846) mvmt=(0.0000,0.0900,0.0931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4170,-0.6348) mvmt=(0.0000,0.0900,0.0931) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1472,4.4154,-0.6564) mvmt=(-0.0921,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1472,4.4154,-0.6564) mvmt=(-0.0921,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.647,7.085,93.364) lpos=(-11.147,4.415,-0.656) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1472,4.4154,-0.6564) mvmt=(-0.0921,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3222,0.2674,0.9688) mvmt=(-0.0921,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3472,0.0274,0.8638) mvmt=(-0.0921,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3472,-2.1839,-0.4862) mvmt=(-0.0921,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1472,4.4154,-0.6364) mvmt=(-0.0921,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.647,7.085,93.364) lpos=(-11.147,4.415,-0.656) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4154,-0.6564) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.085,93.364) lpos=(-11.055,4.415,-0.656) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4154,-0.6564) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2674,0.9688) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0274,0.8638) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1839,-0.4862) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4154,-0.6364) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4154,-0.6564) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.085,93.364) lpos=(-11.055,4.415,-0.656) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4154,-0.6564) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2674,0.9688) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0274,0.8638) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1839,-0.4862) mvmt=(0.0000,0.0884,0.0915) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4154,-0.6364) mvmt=(0.0000,0.0884,0.0915) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1512,4.4192,-0.6525) mvmt=(-0.0961,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1512,4.4192,-0.6525) mvmt=(-0.0961,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.081,93.367) lpos=(-11.151,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1512,4.4192,-0.6525) mvmt=(-0.0961,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.2712,0.9727) mvmt=(-0.0961,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3512,0.0312,0.8677) mvmt=(-0.0961,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3512,-2.1801,-0.4823) mvmt=(-0.0961,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1512,4.4192,-0.6325) mvmt=(-0.0961,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.081,93.367) lpos=(-11.151,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4192,-0.6525) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.081,93.367) lpos=(-11.055,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4192,-0.6525) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2712,0.9727) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0312,0.8677) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1801,-0.4823) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4192,-0.6325) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4192,-0.6525) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.081,93.367) lpos=(-11.055,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4192,-0.6525) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2712,0.9727) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0312,0.8677) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1801,-0.4823) mvmt=(0.0000,0.0922,0.0954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4192,-0.6325) mvmt=(0.0000,0.0922,0.0954) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1518,4.4199,-0.6518) mvmt=(-0.0967,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1518,4.4199,-0.6518) mvmt=(-0.0967,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.652,7.080,93.368) lpos=(-11.152,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1518,4.4199,-0.6518) mvmt=(-0.0967,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3268,0.2718,0.9734) mvmt=(-0.0967,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3518,0.0318,0.8684) mvmt=(-0.0967,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3518,-2.1794,-0.4816) mvmt=(-0.0967,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1518,4.4199,-0.6318) mvmt=(-0.0967,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.652,7.080,93.368) lpos=(-11.152,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4199,-0.6518) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.080,93.368) lpos=(-11.055,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4199,-0.6518) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2718,0.9734) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0318,0.8684) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1794,-0.4816) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4199,-0.6318) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4199,-0.6518) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.080,93.368) lpos=(-11.055,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4199,-0.6518) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2718,0.9734) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0318,0.8684) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1794,-0.4816) mvmt=(0.0000,0.0929,0.0961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4199,-0.6318) mvmt=(0.0000,0.0929,0.0961) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1530,4.4210,-0.6507) mvmt=(-0.0979,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1530,4.4210,-0.6507) mvmt=(-0.0979,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.653,7.079,93.369) lpos=(-11.153,4.421,-0.651) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1530,4.4210,-0.6507) mvmt=(-0.0979,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3280,0.2729,0.9745) mvmt=(-0.0979,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3530,0.0329,0.8695) mvmt=(-0.0979,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3530,-2.1783,-0.4805) mvmt=(-0.0979,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1530,4.4210,-0.6307) mvmt=(-0.0979,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.653,7.079,93.369) lpos=(-11.153,4.421,-0.651) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4210,-0.6507) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.079,93.369) lpos=(-11.055,4.421,-0.651) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4210,-0.6507) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2729,0.9745) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0329,0.8695) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1783,-0.4805) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4210,-0.6307) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4210,-0.6507) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.079,93.369) lpos=(-11.055,4.421,-0.651) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4210,-0.6507) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2729,0.9745) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0329,0.8695) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1783,-0.4805) mvmt=(0.0000,0.0940,0.0972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4210,-0.6307) mvmt=(0.0000,0.0940,0.0972) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1508,4.4189,-0.6528) mvmt=(-0.0957,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1508,4.4189,-0.6528) mvmt=(-0.0957,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.081,93.367) lpos=(-11.151,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1508,4.4189,-0.6528) mvmt=(-0.0957,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3258,0.2708,0.9724) mvmt=(-0.0957,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3508,0.0308,0.8674) mvmt=(-0.0957,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3508,-2.1804,-0.4826) mvmt=(-0.0957,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1508,4.4189,-0.6328) mvmt=(-0.0957,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.081,93.367) lpos=(-11.151,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4189,-0.6528) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.081,93.367) lpos=(-11.055,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4189,-0.6528) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2708,0.9724) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0308,0.8674) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1804,-0.4826) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4189,-0.6328) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4189,-0.6528) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.081,93.367) lpos=(-11.055,4.419,-0.653) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4189,-0.6528) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2708,0.9724) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0308,0.8674) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1804,-0.4826) mvmt=(0.0000,0.0919,0.0951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4189,-0.6328) mvmt=(0.0000,0.0919,0.0951) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1460,4.4142,-0.6577) mvmt=(-0.0909,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1460,4.4142,-0.6577) mvmt=(-0.0909,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.086,93.362) lpos=(-11.146,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1460,4.4142,-0.6577) mvmt=(-0.0909,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3210,0.2662,0.9675) mvmt=(-0.0909,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3460,0.0262,0.8625) mvmt=(-0.0909,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3460,-2.1851,-0.4875) mvmt=(-0.0909,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1460,4.4142,-0.6377) mvmt=(-0.0909,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.086,93.362) lpos=(-11.146,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4142,-0.6577) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.086,93.362) lpos=(-11.055,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4142,-0.6577) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2662,0.9675) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0262,0.8625) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1851,-0.4875) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4142,-0.6377) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4142,-0.6577) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.086,93.362) lpos=(-11.055,4.414,-0.658) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4142,-0.6577) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2662,0.9675) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0262,0.8625) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1851,-0.4875) mvmt=(0.0000,0.0872,0.0902) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4142,-0.6377) mvmt=(0.0000,0.0872,0.0902) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1533,4.4212,-0.6504) mvmt=(-0.0982,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1533,4.4212,-0.6504) mvmt=(-0.0982,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.653,7.079,93.370) lpos=(-11.153,4.421,-0.650) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1533,4.4212,-0.6504) mvmt=(-0.0982,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3283,0.2732,0.9748) mvmt=(-0.0982,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3533,0.0332,0.8698) mvmt=(-0.0982,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3533,-2.1781,-0.4802) mvmt=(-0.0982,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1533,4.4212,-0.6304) mvmt=(-0.0982,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.653,7.079,93.370) lpos=(-11.153,4.421,-0.650) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4212,-0.6504) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.079,93.370) lpos=(-11.055,4.421,-0.650) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4212,-0.6504) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2732,0.9748) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0332,0.8698) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1781,-0.4802) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4212,-0.6304) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4212,-0.6504) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.079,93.370) lpos=(-11.055,4.421,-0.650) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4212,-0.6504) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2732,0.9748) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0332,0.8698) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1781,-0.4802) mvmt=(0.0000,0.0943,0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4212,-0.6304) mvmt=(0.0000,0.0943,0.0975) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1465,4.4147,-0.6572) mvmt=(-0.0914,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1465,4.4147,-0.6572) mvmt=(-0.0914,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.085,93.363) lpos=(-11.146,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1465,4.4147,-0.6572) mvmt=(-0.0914,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3215,0.2667,0.9680) mvmt=(-0.0914,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3465,0.0267,0.8630) mvmt=(-0.0914,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3465,-2.1846,-0.4870) mvmt=(-0.0914,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1465,4.4147,-0.6372) mvmt=(-0.0914,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.085,93.363) lpos=(-11.146,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4147,-0.6572) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.085,93.363) lpos=(-11.055,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4147,-0.6572) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2667,0.9680) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0267,0.8630) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1846,-0.4870) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4147,-0.6372) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4147,-0.6572) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.085,93.363) lpos=(-11.055,4.415,-0.657) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4147,-0.6572) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2667,0.9680) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0267,0.8630) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1846,-0.4870) mvmt=(0.0000,0.0877,0.0907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4147,-0.6372) mvmt=(0.0000,0.0877,0.0907) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1695,4.4200,-0.6517) mvmt=(-0.1145,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1695,4.4200,-0.6517) mvmt=(-0.1145,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.080,93.368) lpos=(-11.170,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1695,4.4200,-0.6517) mvmt=(-0.1145,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.2719,0.9735) mvmt=(-0.1145,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3695,0.0319,0.8685) mvmt=(-0.1145,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3695,-2.1793,-0.4815) mvmt=(-0.1145,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1695,4.4200,-0.6317) mvmt=(-0.1145,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.080,93.368) lpos=(-11.170,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4200,-0.6517) mvmt=(0.0000,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.080,93.368) lpos=(-11.055,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4200,-0.6517) mvmt=(0.0000,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2719,0.9735) 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.2551,0.0319,0.8685) 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.2551,-2.1793,-0.4815) 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.0551,4.4200,-0.6317) 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.0551,4.4200,-0.6517) mvmt=(0.0000,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.080,93.368) lpos=(-11.055,4.420,-0.652) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4200,-0.6517) mvmt=(0.0000,0.0930,0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2719,0.9735) 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.2551,0.0319,0.8685) 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.2551,-2.1793,-0.4815) 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.0551,4.4200,-0.6317) mvmt=(0.0000,0.0930,0.0962) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1778,4.4102,-0.6619) mvmt=(-0.1227,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1778,4.4102,-0.6619) mvmt=(-0.1227,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.678,7.090,93.358) lpos=(-11.178,4.410,-0.662) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1778,4.4102,-0.6619) mvmt=(-0.1227,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3528,0.2621,0.9633) mvmt=(-0.1227,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3778,0.0221,0.8583) mvmt=(-0.1227,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3778,-2.1891,-0.4917) mvmt=(-0.1227,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1778,4.4102,-0.6419) mvmt=(-0.1227,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.678,7.090,93.358) lpos=(-11.178,4.410,-0.662) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4102,-0.6619) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.090,93.358) lpos=(-11.055,4.410,-0.662) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4102,-0.6619) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2621,0.9633) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0221,0.8583) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1891,-0.4917) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4102,-0.6419) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4102,-0.6619) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.090,93.358) lpos=(-11.055,4.410,-0.662) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4102,-0.6619) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2621,0.9633) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0221,0.8583) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.1891,-0.4917) mvmt=(0.0000,0.0832,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4102,-0.6419) mvmt=(0.0000,0.0832,0.0860) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1966,4.4073,-0.6648) mvmt=(-0.1415,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1966,4.4073,-0.6648) mvmt=(-0.1415,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.697,7.093,93.355) lpos=(-11.197,4.407,-0.665) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1966,4.4073,-0.6648) mvmt=(-0.1415,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.3716,0.2593,0.9604) mvmt=(-0.1415,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3966,0.0193,0.8554) mvmt=(-0.1415,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3966,-2.1920,-0.4946) mvmt=(-0.1415,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1966,4.4073,-0.6448) mvmt=(-0.1415,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.697,7.093,93.355) lpos=(-11.197,4.407,-0.665) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4073,-0.6648) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.093,93.355) lpos=(-11.055,4.407,-0.665) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4073,-0.6648) 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.2301,0.2593,0.9604) 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.2551,0.0193,0.8554) 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.2551,-2.1920,-0.4946) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4073,-0.6448) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4073,-0.6648) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.093,93.355) lpos=(-11.055,4.407,-0.665) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.4073,-0.6648) 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.2301,0.2593,0.9604) 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.2551,0.0193,0.8554) 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.2551,-2.1920,-0.4946) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.4073,-0.6448) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1999,4.3970,-0.6755) mvmt=(-0.1448,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1999,4.3970,-0.6755) mvmt=(-0.1448,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.700,7.103,93.344) lpos=(-11.200,4.397,-0.676) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1999,4.3970,-0.6755) mvmt=(-0.1448,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3749,0.2489,0.9497) mvmt=(-0.1448,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3999,0.0089,0.8447) mvmt=(-0.1448,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3999,-2.2023,-0.5053) mvmt=(-0.1448,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1999,4.3970,-0.6555) mvmt=(-0.1448,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.700,7.103,93.344) lpos=(-11.200,4.397,-0.676) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3970,-0.6755) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.103,93.344) lpos=(-11.055,4.397,-0.676) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3970,-0.6755) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2489,0.9497) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0089,0.8447) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2023,-0.5053) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3970,-0.6555) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3970,-0.6755) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.103,93.344) lpos=(-11.055,4.397,-0.676) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3970,-0.6755) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2489,0.9497) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0089,0.8447) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2023,-0.5053) mvmt=(0.0000,0.0700,0.0724) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3970,-0.6555) mvmt=(0.0000,0.0700,0.0724) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2190,4.3939,-0.6787) mvmt=(-0.1639,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2190,4.3939,-0.6787) mvmt=(-0.1639,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.719,7.106,93.341) lpos=(-11.219,4.394,-0.679) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2190,4.3939,-0.6787) mvmt=(-0.1639,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3940,0.2458,0.9465) mvmt=(-0.1639,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4190,0.0058,0.8415) mvmt=(-0.1639,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4190,-2.2054,-0.5085) mvmt=(-0.1639,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2190,4.3939,-0.6587) mvmt=(-0.1639,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.719,7.106,93.341) lpos=(-11.219,4.394,-0.679) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3939,-0.6787) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.106,93.341) lpos=(-11.055,4.394,-0.679) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3939,-0.6787) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2458,0.9465) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0058,0.8415) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2054,-0.5085) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3939,-0.6587) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3939,-0.6787) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.106,93.341) lpos=(-11.055,4.394,-0.679) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3939,-0.6787) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2458,0.9465) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,0.0058,0.8415) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2054,-0.5085) mvmt=(0.0000,0.0669,0.0692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3939,-0.6587) mvmt=(0.0000,0.0669,0.0692) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2289,4.3866,-0.6862) mvmt=(-0.1738,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2289,4.3866,-0.6862) mvmt=(-0.1738,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.729,7.113,93.334) lpos=(-11.229,4.387,-0.686) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2289,4.3866,-0.6862) mvmt=(-0.1738,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4039,0.2386,0.9390) mvmt=(-0.1738,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4288,-0.0014,0.8340) mvmt=(-0.1738,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4288,-2.2127,-0.5160) mvmt=(-0.1738,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2289,4.3866,-0.6662) mvmt=(-0.1738,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.729,7.113,93.334) lpos=(-11.229,4.387,-0.686) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3866,-0.6862) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.113,93.334) lpos=(-11.055,4.387,-0.686) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3866,-0.6862) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2386,0.9390) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0014,0.8340) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2127,-0.5160) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3866,-0.6662) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3866,-0.6862) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.113,93.334) lpos=(-11.055,4.387,-0.686) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3866,-0.6862) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2386,0.9390) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0014,0.8340) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2127,-0.5160) mvmt=(0.0000,0.0596,0.0617) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3866,-0.6662) mvmt=(0.0000,0.0596,0.0617) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2445,4.3808,-0.6923) mvmt=(-0.1894,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2445,4.3808,-0.6923) mvmt=(-0.1894,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.745,7.119,93.328) lpos=(-11.245,4.381,-0.692) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2445,4.3808,-0.6923) mvmt=(-0.1894,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4195,0.2327,0.9329) mvmt=(-0.1894,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4445,-0.0073,0.8279) mvmt=(-0.1894,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4445,-2.2185,-0.5221) mvmt=(-0.1894,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2445,4.3808,-0.6723) mvmt=(-0.1894,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.745,7.119,93.328) lpos=(-11.245,4.381,-0.692) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3808,-0.6923) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.119,93.328) lpos=(-11.055,4.381,-0.692) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3808,-0.6923) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2327,0.9329) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0073,0.8279) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2185,-0.5221) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3808,-0.6723) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3808,-0.6923) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.119,93.328) lpos=(-11.055,4.381,-0.692) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3808,-0.6923) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2301,0.2327,0.9329) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0073,0.8279) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2185,-0.5221) mvmt=(0.0000,0.0538,0.0556) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3808,-0.6723) mvmt=(0.0000,0.0538,0.0556) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2537,4.3728,-0.7006) mvmt=(-0.1986,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2537,4.3728,-0.7006) mvmt=(-0.1986,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.754,7.127,93.319) lpos=(-11.254,4.373,-0.701) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4287,0.2247,0.9246) mvmt=(-0.1986,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4537,-0.0153,0.8196) mvmt=(-0.1986,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4537,-2.2265,-0.5304) mvmt=(-0.1986,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2537,4.3728,-0.6806) mvmt=(-0.1986,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.754,7.127,93.319) lpos=(-11.254,4.373,-0.701) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3728,-0.7006) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.127,93.319) lpos=(-11.055,4.373,-0.701) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.2247,0.9246) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0153,0.8196) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2265,-0.5304) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3728,-0.6806) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3728,-0.7006) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.127,93.319) lpos=(-11.055,4.373,-0.701) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.2247,0.9246) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0153,0.8196) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2265,-0.5304) mvmt=(0.0000,0.0458,0.0474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3728,-0.6806) mvmt=(0.0000,0.0458,0.0474) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2616,4.3644,-0.7092) mvmt=(-0.2065,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2616,4.3644,-0.7092) mvmt=(-0.2065,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.762,7.136,93.311) lpos=(-11.262,4.364,-0.709) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4366,0.2163,0.9160) mvmt=(-0.2065,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4615,-0.0237,0.8110) mvmt=(-0.2065,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4615,-2.2349,-0.5390) mvmt=(-0.2065,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2616,4.3644,-0.6892) mvmt=(-0.2065,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.762,7.136,93.311) lpos=(-11.262,4.364,-0.709) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3644,-0.7092) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.136,93.311) lpos=(-11.055,4.364,-0.709) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.2163,0.9160) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0237,0.8110) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2349,-0.5390) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3644,-0.6892) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3644,-0.7092) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.136,93.311) lpos=(-11.055,4.364,-0.709) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.2163,0.9160) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0237,0.8110) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2349,-0.5390) mvmt=(0.0000,0.0374,0.0387) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3644,-0.6892) mvmt=(0.0000,0.0374,0.0387) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2496,4.3539,-0.7200) mvmt=(-0.1945,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2496,4.3539,-0.7200) mvmt=(-0.1945,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.750,7.146,93.300) lpos=(-11.250,4.354,-0.720) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4246,0.2059,0.9052) mvmt=(-0.1945,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4496,-0.0341,0.8002) mvmt=(-0.1945,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4496,-2.2454,-0.5498) mvmt=(-0.1945,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2496,4.3539,-0.7000) mvmt=(-0.1945,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.750,7.146,93.300) lpos=(-11.250,4.354,-0.720) lprev=(-11.055,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0551,4.3539,-0.7200) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.146,93.300) lpos=(-11.055,4.354,-0.720) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.2059,0.9052) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0341,0.8002) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2454,-0.5498) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3539,-0.7000) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3539,-0.7200) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,7.146,93.300) lpos=(-11.055,4.354,-0.720) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2301,0.2059,0.9052) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-0.0341,0.8002) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2551,-2.2454,-0.5498) mvmt=(0.0000,0.0269,0.0279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0551,4.3539,-0.7000) mvmt=(0.0000,0.0269,0.0279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1162,4.5393,-0.5283) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.961,93.492) lpos=(-11.116,4.539,-0.528) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5393,-0.5283) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2912,0.3912,1.0969) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,0.1512,0.9919) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.0600,-0.3581) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5393,-0.5083) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5393,-0.5283) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.961,93.492) lpos=(-11.116,4.539,-0.528) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5393,-0.5283) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2912,0.3912,1.0969) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,0.1512,0.9919) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.0600,-0.3581) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5393,-0.5083) mvmt=(-0.0611,0.2123,0.2196) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.3270,-0.7479) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.173,93.272) lpos=(-11.116,4.327,-0.748) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2912,0.1789,0.8773) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-0.0611,0.7723) mvmt=(-0.0611,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.2723,-0.5777) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.3270,-0.7279) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.3270,-1.4979) mvmt=(-0.0611,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.173,92.522) lpos=(-11.116,4.327,-1.498) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2912,0.1789,0.1273) mvmt=(-0.0611,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-0.0611,0.0223) mvmt=(-0.0611,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3162,-0.0611,0.0223) out=(-0.3162,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.1162,4.3270,-0.7479) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.173,93.272) lpos=(-11.116,4.327,-0.748) lprev=(-11.055,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2912,0.1789,0.8773) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-0.0611,0.7723) mvmt=(-0.0611,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.2723,-0.5777) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.3270,-0.7279) mvmt=(-0.0611,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1729,4.5437,-0.5237) mvmt=(-0.0568,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1729,4.5437,-0.5237) mvmt=(-0.0568,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,6.956,93.496) lpos=(-11.173,4.544,-0.524) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1729,4.5437,-0.5237) mvmt=(-0.0568,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3479,0.3957,1.1015) mvmt=(-0.0568,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3729,0.1557,0.9965) mvmt=(-0.0568,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3729,-2.0556,-0.3535) mvmt=(-0.0568,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1729,4.5437,-0.5037) mvmt=(-0.0568,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,6.956,93.496) lpos=(-11.173,4.544,-0.524) lprev=(-11.116,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5437,-0.5237) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.956,93.496) lpos=(-11.116,4.544,-0.524) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5437,-0.5237) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2912,0.3957,1.1015) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,0.1557,0.9965) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.0556,-0.3535) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5437,-0.5037) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5437,-0.5237) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.956,93.496) lpos=(-11.116,4.544,-0.524) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5437,-0.5237) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2912,0.3957,1.1015) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,0.1557,0.9965) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.0556,-0.3535) mvmt=(0.0000,0.2167,0.2242) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5437,-0.5037) mvmt=(0.0000,0.2167,0.2242) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1328,4.5423,-0.5251) mvmt=(-0.0166,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1328,4.5423,-0.5251) mvmt=(-0.0166,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.633,6.958,93.495) lpos=(-11.133,4.542,-0.525) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1328,4.5423,-0.5251) mvmt=(-0.0166,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3078,0.3943,1.1001) mvmt=(-0.0166,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3327,0.1543,0.9951) mvmt=(-0.0166,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3327,-2.0570,-0.3549) mvmt=(-0.0166,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1328,4.5423,-0.5051) mvmt=(-0.0166,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.633,6.958,93.495) lpos=(-11.133,4.542,-0.525) lprev=(-11.116,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5423,-0.5251) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.958,93.495) lpos=(-11.116,4.542,-0.525) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5423,-0.5251) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2912,0.3943,1.1001) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,0.1543,0.9951) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.0570,-0.3549) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5423,-0.5051) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5423,-0.5251) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.958,93.495) lpos=(-11.116,4.542,-0.525) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1162,4.5423,-0.5251) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2912,0.3943,1.1001) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,0.1543,0.9951) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3162,-2.0570,-0.3549) mvmt=(0.0000,0.2153,0.2228) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1162,4.5423,-0.5051) mvmt=(0.0000,0.2153,0.2228) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0950,4.5357,-0.5320) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,6.964,93.488) lpos=(-11.095,4.536,-0.532) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0950,4.5357,-0.5320) mvmt=(0.0211,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.2700,0.3877,1.0932) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,0.1477,0.9882) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,-2.0636,-0.3618) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0950,4.5357,-0.5120) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0950,4.5357,-0.5320) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,6.964,93.488) lpos=(-11.095,4.536,-0.532) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0950,4.5357,-0.5320) mvmt=(0.0211,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.2700,0.3877,1.0932) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,0.1477,0.9882) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,-2.0636,-0.3618) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0950,4.5357,-0.5120) mvmt=(0.0211,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0950,4.3270,-0.7479) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,7.173,93.272) lpos=(-11.095,4.327,-0.748) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2700,0.1789,0.8773) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,-0.0611,0.7723) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,-2.2723,-0.5777) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0950,4.3270,-0.7279) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0950,4.3270,-1.4979) mvmt=(0.0211,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,7.173,92.522) lpos=(-11.095,4.327,-1.498) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2700,0.1789,0.1273) mvmt=(0.0211,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,-0.0611,0.0223) mvmt=(0.0211,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2950,-0.0611,0.0223) out=(-0.2950,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0950,4.3270,-0.7479) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.595,7.173,93.272) lpos=(-11.095,4.327,-0.748) lprev=(-11.116,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2700,0.1789,0.8773) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,-0.0611,0.7723) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2950,-2.2723,-0.5777) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0950,4.3270,-0.7279) mvmt=(0.0211,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0430,4.5205,-0.5478) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,6.980,93.472) lpos=(-11.043,4.520,-0.548) lprev=(-11.095,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0430,4.5205,-0.5478) mvmt=(0.0520,0.1935,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=(-1.2180,0.3724,1.0774) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,0.1324,0.9724) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.0788,-0.3776) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.5205,-0.5278) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.5205,-0.5478) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,6.980,93.472) lpos=(-11.043,4.520,-0.548) lprev=(-11.095,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0430,4.5205,-0.5478) mvmt=(0.0520,0.1935,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=(-1.2180,0.3724,1.0774) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,0.1324,0.9724) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.0788,-0.3776) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.5205,-0.5278) mvmt=(0.0520,0.1935,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-0.7479) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.173,93.272) lpos=(-11.043,4.327,-0.748) lprev=(-11.095,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2180,0.1789,0.8773) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-0.0611,0.7723) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.2723,-0.5777) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-0.7279) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-1.4979) mvmt=(0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.173,92.522) lpos=(-11.043,4.327,-1.498) lprev=(-11.095,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2180,0.1789,0.1273) mvmt=(0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-0.0611,0.0223) mvmt=(0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2430,-0.0611,0.0223) out=(-0.2430,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0430,4.3270,-0.7479) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.543,7.173,93.272) lpos=(-11.043,4.327,-0.748) lprev=(-11.095,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2180,0.1789,0.8773) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-0.0611,0.7723) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-2.2723,-0.5777) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0430,4.3270,-0.7279) mvmt=(0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9794,4.5254,-0.5427) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,6.975,93.477) lpos=(-10.979,4.525,-0.543) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9794,4.5254,-0.5427) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1544,0.3773,1.0825) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,0.1373,0.9775) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,-2.0740,-0.3725) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9794,4.5254,-0.5227) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9794,4.5254,-0.5427) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,6.975,93.477) lpos=(-10.979,4.525,-0.543) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9794,4.5254,-0.5427) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1544,0.3773,1.0825) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,0.1373,0.9775) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,-2.0740,-0.3725) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9794,4.5254,-0.5227) mvmt=(0.0636,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9794,4.3270,-0.7479) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,7.173,93.272) lpos=(-10.979,4.327,-0.748) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1544,0.1789,0.8773) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,-0.0611,0.7723) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,-2.2723,-0.5777) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9794,4.3270,-0.7279) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9794,4.3270,-1.4979) mvmt=(0.0636,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,7.173,92.522) lpos=(-10.979,4.327,-1.498) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1544,0.1789,0.1273) mvmt=(0.0636,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,-0.0611,0.0223) mvmt=(0.0636,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1794,-0.0611,0.0223) out=(-0.1794,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9794,4.3270,-0.7479) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.479,7.173,93.272) lpos=(-10.979,4.327,-0.748) lprev=(-11.043,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1544,0.1789,0.8773) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,-0.0611,0.7723) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1794,-2.2723,-0.5777) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9794,4.3270,-0.7279) mvmt=(0.0636,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9146,4.5292,-0.5387) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.415,6.971,93.481) lpos=(-10.915,4.529,-0.539) lprev=(-10.979,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9146,4.5292,-0.5387) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0896,0.3812,1.0865) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,0.1412,0.9815) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,-2.0701,-0.3685) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9146,4.5292,-0.5187) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9146,4.5292,-0.5387) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.415,6.971,93.481) lpos=(-10.915,4.529,-0.539) lprev=(-10.979,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9146,4.5292,-0.5387) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0896,0.3812,1.0865) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,0.1412,0.9815) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,-2.0701,-0.3685) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9146,4.5292,-0.5187) mvmt=(0.0648,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9146,4.3270,-0.7479) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.415,7.173,93.272) lpos=(-10.915,4.327,-0.748) lprev=(-10.979,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0896,0.1789,0.8773) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,-0.0611,0.7723) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,-2.2723,-0.5777) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9146,4.3270,-0.7279) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9146,4.3270,-1.4979) mvmt=(0.0648,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.415,7.173,92.522) lpos=(-10.915,4.327,-1.498) lprev=(-10.979,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0896,0.1789,0.1273) mvmt=(0.0648,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,-0.0611,0.0223) mvmt=(0.0648,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1146,-0.0611,0.0223) out=(-0.1146,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9146,4.3270,-0.7479) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.415,7.173,93.272) lpos=(-10.915,4.327,-0.748) lprev=(-10.979,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0896,0.1789,0.8773) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,-0.0611,0.7723) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1146,-2.2723,-0.5777) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9146,4.3270,-0.7279) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8497,4.5297,-0.5383) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.350,6.970,93.482) lpos=(-10.850,4.530,-0.538) lprev=(-10.915,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8497,4.5297,-0.5383) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0247,0.3816,1.0869) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,0.1416,0.9819) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,-2.0696,-0.3681) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8497,4.5297,-0.5183) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8497,4.5297,-0.5383) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.350,6.970,93.482) lpos=(-10.850,4.530,-0.538) lprev=(-10.915,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8497,4.5297,-0.5383) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0247,0.3816,1.0869) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,0.1416,0.9819) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,-2.0696,-0.3681) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8497,4.5297,-0.5183) mvmt=(0.0650,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8497,4.3270,-0.7479) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.350,7.173,93.272) lpos=(-10.850,4.327,-0.748) lprev=(-10.915,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0247,0.1789,0.8773) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,-0.0611,0.7723) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,-2.2723,-0.5777) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8497,4.3270,-0.7279) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8497,4.3270,-1.4979) mvmt=(0.0650,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.350,7.173,92.522) lpos=(-10.850,4.327,-1.498) lprev=(-10.915,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0247,0.1789,0.1273) mvmt=(0.0650,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,-0.0611,0.0223) mvmt=(0.0650,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0497,-0.0611,0.0223) out=(-0.0497,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8497,4.3270,-0.7479) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.350,7.173,93.272) lpos=(-10.850,4.327,-0.748) lprev=(-10.915,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0247,0.1789,0.8773) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,-0.0611,0.7723) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0497,-2.2723,-0.5777) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8497,4.3270,-0.7279) mvmt=(0.0650,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7866,4.5238,-0.5443) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.287,6.976,93.476) lpos=(-10.787,4.524,-0.544) lprev=(-10.850,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7866,4.5238,-0.5443) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9616,0.3758,1.0809) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,0.1358,0.9759) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,-2.0755,-0.3741) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7866,4.5238,-0.5243) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7866,4.5238,-0.5443) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.287,6.976,93.476) lpos=(-10.787,4.524,-0.544) lprev=(-10.850,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7866,4.5238,-0.5443) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9616,0.3758,1.0809) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,0.1358,0.9759) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,-2.0755,-0.3741) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7866,4.5238,-0.5243) mvmt=(0.0631,0.1968,0.2036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7866,4.3270,-0.7479) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.287,7.173,93.272) lpos=(-10.787,4.327,-0.748) lprev=(-10.850,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9616,0.1789,0.8773) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,-0.0611,0.7723) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,-2.2723,-0.5777) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7866,4.3270,-0.7279) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7866,4.3270,-1.4979) mvmt=(0.0631,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.287,7.173,92.522) lpos=(-10.787,4.327,-1.498) lprev=(-10.850,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9616,0.1789,0.1273) mvmt=(0.0631,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,-0.0611,0.0223) mvmt=(0.0631,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0134,-0.0611,0.0223) out=(0.0134,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7866,4.3270,-0.7479) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.287,7.173,93.272) lpos=(-10.787,4.327,-0.748) lprev=(-10.850,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9616,0.1789,0.8773) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,-0.0611,0.7723) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0134,-2.2723,-0.5777) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7866,4.3270,-0.7279) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7212,4.5308,-0.5371) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,6.969,93.483) lpos=(-10.721,4.531,-0.537) lprev=(-10.787,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7212,4.5308,-0.5371) mvmt=(0.0653,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.8962,0.3828,1.0881) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,0.1428,0.9831) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,-2.0685,-0.3669) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7212,4.5308,-0.5171) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7212,4.5308,-0.5371) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,6.969,93.483) lpos=(-10.721,4.531,-0.537) lprev=(-10.787,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7212,4.5308,-0.5371) mvmt=(0.0653,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.8962,0.3828,1.0881) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,0.1428,0.9831) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,-2.0685,-0.3669) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7212,4.5308,-0.5171) mvmt=(0.0653,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7212,4.3270,-0.7479) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,7.173,93.272) lpos=(-10.721,4.327,-0.748) lprev=(-10.787,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8962,0.1789,0.8773) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,-0.0611,0.7723) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,-2.2723,-0.5777) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7212,4.3270,-0.7279) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7212,4.3270,-1.4979) mvmt=(0.0653,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,7.173,92.522) lpos=(-10.721,4.327,-1.498) lprev=(-10.787,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8962,0.1789,0.1273) mvmt=(0.0653,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,-0.0611,0.0223) mvmt=(0.0653,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0788,-0.0611,0.0223) out=(0.0788,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7212,4.3270,-0.7479) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,7.173,93.272) lpos=(-10.721,4.327,-0.748) lprev=(-10.787,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8962,0.1789,0.8773) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,-0.0611,0.7723) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0788,-2.2723,-0.5777) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7212,4.3270,-0.7279) mvmt=(0.0653,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6568,4.5280,-0.5399) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,6.972,93.480) lpos=(-10.657,4.528,-0.540) lprev=(-10.721,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6568,4.5280,-0.5399) mvmt=(0.0644,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=(-0.8318,0.3800,1.0853) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,0.1400,0.9803) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,-2.0713,-0.3698) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6568,4.5280,-0.5200) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6568,4.5280,-0.5399) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,6.972,93.480) lpos=(-10.657,4.528,-0.540) lprev=(-10.721,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6568,4.5280,-0.5399) mvmt=(0.0644,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=(-0.8318,0.3800,1.0853) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,0.1400,0.9803) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,-2.0713,-0.3698) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6568,4.5280,-0.5200) mvmt=(0.0644,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6568,4.3270,-0.7479) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,7.173,93.272) lpos=(-10.657,4.327,-0.748) lprev=(-10.721,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8318,0.1789,0.8773) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,-0.0611,0.7723) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,-2.2723,-0.5777) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6568,4.3270,-0.7279) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6568,4.3270,-1.4979) mvmt=(0.0644,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,7.173,92.522) lpos=(-10.657,4.327,-1.498) lprev=(-10.721,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8318,0.1789,0.1273) mvmt=(0.0644,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,-0.0611,0.0223) mvmt=(0.0644,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1432,-0.0611,0.0223) out=(0.1432,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6568,4.3270,-0.7479) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,7.173,93.272) lpos=(-10.657,4.327,-0.748) lprev=(-10.721,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8318,0.1789,0.8773) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,-0.0611,0.7723) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1432,-2.2723,-0.5777) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6568,4.3270,-0.7279) mvmt=(0.0644,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5920,4.5293,-0.5387) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.092,6.971,93.481) lpos=(-10.592,4.529,-0.539) lprev=(-10.657,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5920,4.5293,-0.5387) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7670,0.3812,1.0865) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,0.1412,0.9815) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,-2.0700,-0.3685) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2216,-2.9233,2.4858) mvmt=(-0.1606,0.1390,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5920,4.5293,-0.5187) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5920,4.5293,-0.5387) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.092,6.971,93.481) lpos=(-10.592,4.529,-0.539) lprev=(-10.657,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5920,4.5293,-0.5387) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7670,0.3812,1.0865) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,0.1412,0.9815) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,-2.0700,-0.3685) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2216,-2.9233,2.4858) mvmt=(-0.1606,0.1390,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5920,4.5293,-0.5187) mvmt=(0.0648,0.2023,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5920,4.3270,-0.7479) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.092,7.173,93.272) lpos=(-10.592,4.327,-0.748) lprev=(-10.657,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7670,0.1789,0.8773) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,-0.0611,0.7723) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,-2.2723,-0.5777) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5920,4.3270,-0.7279) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5920,4.3270,-1.4979) mvmt=(0.0648,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.092,7.173,92.522) lpos=(-10.592,4.327,-1.498) lprev=(-10.657,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7670,0.1789,0.1273) mvmt=(0.0648,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,-0.0611,0.0223) mvmt=(0.0648,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2080,-0.0611,0.0223) out=(0.2080,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5920,4.3270,-0.7479) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.092,7.173,93.272) lpos=(-10.592,4.327,-0.748) lprev=(-10.657,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7670,0.1789,0.8773) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,-0.0611,0.7723) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2080,-2.2723,-0.5777) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5920,4.3270,-0.7279) mvmt=(0.0648,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5297,4.5213,-0.5469) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.030,6.979,93.473) lpos=(-10.530,4.521,-0.547) lprev=(-10.592,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5297,4.5213,-0.5469) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7047,0.3733,1.0783) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,0.1333,0.9733) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,-2.0780,-0.3767) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2533,-2.8691,2.4776) mvmt=(-0.1543,0.1335,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5297,4.5213,-0.5269) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5297,4.5213,-0.5469) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.030,6.979,93.473) lpos=(-10.530,4.521,-0.547) lprev=(-10.592,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5297,4.5213,-0.5469) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7047,0.3733,1.0783) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,0.1333,0.9733) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,-2.0780,-0.3767) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2533,-2.8691,2.4776) mvmt=(-0.1543,0.1335,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5297,4.5213,-0.5269) mvmt=(0.0623,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5297,4.3270,-0.7479) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.030,7.173,93.272) lpos=(-10.530,4.327,-0.748) lprev=(-10.592,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7047,0.1789,0.8773) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,-0.0611,0.7723) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,-2.2723,-0.5777) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5297,4.3270,-0.7279) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5297,4.3270,-1.4979) mvmt=(0.0623,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.030,7.173,92.522) lpos=(-10.530,4.327,-1.498) lprev=(-10.592,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7047,0.1789,0.1273) mvmt=(0.0623,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,-0.0611,0.0223) mvmt=(0.0623,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2703,-0.0611,0.0223) out=(0.2703,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5297,4.3270,-0.7479) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.030,7.173,93.272) lpos=(-10.530,4.327,-0.748) lprev=(-10.592,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7047,0.1789,0.8773) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,-0.0611,0.7723) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2703,-2.2723,-0.5777) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5297,4.3270,-0.7279) mvmt=(0.0623,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4682,4.5189,-0.5493) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.981,93.471) lpos=(-10.468,4.519,-0.549) lprev=(-10.530,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5189,-0.5493) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.3709,1.0759) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1309,0.9709) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0804,-0.3791) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2797,-2.8134,2.4752) mvmt=(-0.1524,0.1319,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5189,-0.5293) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5189,-0.5493) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.981,93.471) lpos=(-10.468,4.519,-0.549) lprev=(-10.530,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5189,-0.5493) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.3709,1.0759) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1309,0.9709) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0804,-0.3791) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2797,-2.8134,2.4752) mvmt=(-0.1524,0.1319,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5189,-0.5293) mvmt=(0.0615,0.1919,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.3270,-0.7479) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,7.173,93.272) lpos=(-10.468,4.327,-0.748) lprev=(-10.530,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6432,0.1789,0.8773) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-0.0611,0.7723) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.2723,-0.5777) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.3270,-0.7279) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.3270,-1.4979) mvmt=(0.0615,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,7.173,92.522) lpos=(-10.468,4.327,-1.498) lprev=(-10.530,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6432,0.1789,0.1273) mvmt=(0.0615,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-0.0611,0.0223) mvmt=(0.0615,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3318,-0.0611,0.0223) out=(0.3318,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4682,4.3270,-0.7479) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,7.173,93.272) lpos=(-10.468,4.327,-0.748) lprev=(-10.530,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6432,0.1789,0.8773) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-0.0611,0.7723) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.2723,-0.5777) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.3270,-0.7279) mvmt=(0.0615,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4075,4.5163,-0.5521) mvmt=(0.0607,0.1893,0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4075,4.5163,-0.5521) mvmt=(0.0607,0.1893,0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,6.984,93.468) lpos=(-10.407,4.516,-0.552) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4075,4.5163,-0.5521) mvmt=(0.0607,0.1893,0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5825,0.3683,1.0731) mvmt=(0.0607,0.1893,0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5825,0.3683,1.0731) out=(-0.5825,0.3683,1.3971) delta=(0.0000,0.0000,0.3239) deltaMag=0.3239 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4601 dpPos=0.2509 dpMove=-0.4243 iDist=0.5399 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.4075,4.5163,-0.2281) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,6.984,93.792) lpos=(-10.407,4.516,-0.228) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4075,4.5163,-0.2281) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[push-back] site=adjust_sphere in=(-10.4075,4.5163,-0.2281) out=(-10.4075,4.5163,-0.2281) 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.4601->0.4601 dpPos=-0.2281 dpMove=-0.2761 iDist=2.5651 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.4075,4.5163,-0.2281) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5825,0.3683,1.3971) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[push-back-disp] site=dispatch center=(0.3925,0.1283,1.2921) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[push-back-disp] site=dispatch center=(0.3925,-2.0830,-0.0579) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[push-back-disp] site=dispatch center=(0.3059,-2.7587,2.7964) mvmt=(-0.1503,0.1301,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[push-back-disp] site=dispatch center=(-10.4075,4.5163,-0.2081) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[push-back-disp] site=dispatch center=(-10.4075,4.5163,-0.2281) mvmt=(0.0607,0.1893,0.5198) collide=False insertType=1 objState=0x303 winterp=0.4601 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,6.984,93.792) lpos=(-10.407,4.516,-0.228) lprev=(-10.468,4.327,-0.748) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,6.984,93.468) lpos=(-10.407,4.516,-0.552) lprev=(-10.468,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4075,4.3270,-0.7479) mvmt=(0.0607,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.173,93.272) lpos=(-10.407,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5825,0.1789,0.8773) mvmt=(0.0607,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4601 return=-1 +[push-back-disp] site=dispatch center=(-10.4075,4.3270,-0.7479) mvmt=(0.0607,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.173,93.272) lpos=(-10.407,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5825,0.1789,0.8773) mvmt=(0.0607,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5825,0.1789,0.8773) out=(-0.5825,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4075,4.3270,-0.4174) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.173,93.603) lpos=(-10.407,4.327,-0.417) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4075,4.3270,-0.4174) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.4075,4.3270,-0.4174) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5825,0.1789,1.2078) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3925,-0.0611,1.1028) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3925,-2.2723,-0.2472) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4800,-2.8329,2.6071) mvmt=(0.0238,0.0558,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4075,4.3270,-0.3974) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4075,4.3270,-0.4174) mvmt=(0.0607,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.173,93.603) lpos=(-10.407,4.327,-0.417) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4682,4.5273,-0.4160) mvmt=(0.0000,0.2003,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5273,-0.4160) mvmt=(0.0000,0.2003,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.973,93.604) lpos=(-10.468,4.527,-0.416) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5273,-0.4160) mvmt=(0.0000,0.2003,0.3319) 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.4682,4.5273,-0.4160) mvmt=(0.0000,0.2003,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.3792,1.2092) mvmt=(0.0000,0.2003,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1392,1.1042) mvmt=(0.0000,0.2003,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0721,-0.2458) mvmt=(0.0000,0.2003,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2720,-2.8102,2.6085) mvmt=(-0.1842,0.0786,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5273,-0.3960) mvmt=(0.0000,0.2003,0.3319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.973,93.604) lpos=(-10.468,4.527,-0.416) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4014,4.5427,-0.4006) mvmt=(0.0668,0.2157,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4014,4.5427,-0.4006) mvmt=(0.0668,0.2157,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,6.957,93.619) lpos=(-10.401,4.543,-0.401) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4014,4.5427,-0.4006) mvmt=(0.0668,0.2157,0.3474) 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.4014,4.5427,-0.4006) mvmt=(0.0668,0.2157,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5764,0.3946,1.2246) mvmt=(0.0668,0.2157,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3986,0.1546,1.1196) mvmt=(0.0668,0.2157,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3986,-2.0566,-0.2304) mvmt=(0.0668,0.2157,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2840,-2.7427,2.6239) mvmt=(-0.1722,0.1461,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4014,4.5427,-0.3806) mvmt=(0.0668,0.2157,0.3474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,6.957,93.619) lpos=(-10.401,4.543,-0.401) lprev=(-10.468,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4014,4.3270,-0.7479) mvmt=(0.0668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.272) lpos=(-10.401,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5764,0.1789,0.8773) mvmt=(0.0668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4014,4.3270,-0.7479) mvmt=(0.0668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.272) lpos=(-10.401,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5764,0.1789,0.8773) mvmt=(0.0668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5764,0.1789,0.8773) out=(-0.5764,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4014,4.3270,-0.4174) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.603) lpos=(-10.401,4.327,-0.417) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4014,4.3270,-0.4174) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.4014,4.3270,-0.4174) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5764,0.1789,1.2078) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3986,-0.0611,1.1028) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3986,-2.2723,-0.2472) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4824,-2.8273,2.6071) mvmt=(0.0262,0.0614,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4014,4.3270,-0.3974) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4014,4.3270,-0.4174) mvmt=(0.0668,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.603) lpos=(-10.401,4.327,-0.417) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4682,4.5450,-0.3983) mvmt=(0.0000,0.2180,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5450,-0.3983) mvmt=(0.0000,0.2180,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.955,93.622) lpos=(-10.468,4.545,-0.398) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5450,-0.3983) mvmt=(0.0000,0.2180,0.3496) 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.4682,4.5450,-0.3983) mvmt=(0.0000,0.2180,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.3969,1.2269) mvmt=(0.0000,0.2180,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1569,1.1219) mvmt=(0.0000,0.2180,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0543,-0.2281) mvmt=(0.0000,0.2180,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2557,-2.8032,2.6262) mvmt=(-0.2005,0.0855,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5450,-0.3783) mvmt=(0.0000,0.2180,0.3496) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.955,93.622) lpos=(-10.468,4.545,-0.398) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4006,4.5451,-0.3982) mvmt=(0.0675,0.2181,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4006,4.5451,-0.3982) mvmt=(0.0675,0.2181,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,6.955,93.622) lpos=(-10.401,4.545,-0.398) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4006,4.5451,-0.3982) mvmt=(0.0675,0.2181,0.3497) 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.4006,4.5451,-0.3982) mvmt=(0.0675,0.2181,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5756,0.3970,1.2270) mvmt=(0.0675,0.2181,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3994,0.1570,1.1220) mvmt=(0.0675,0.2181,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3994,-2.0542,-0.2280) mvmt=(0.0675,0.2181,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2821,-2.7411,2.6263) mvmt=(-0.1741,0.1477,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4006,4.5451,-0.3782) mvmt=(0.0675,0.2181,0.3497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,6.955,93.622) lpos=(-10.401,4.545,-0.398) lprev=(-10.468,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4006,4.3270,-0.7479) mvmt=(0.0675,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.272) lpos=(-10.401,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5756,0.1789,0.8773) mvmt=(0.0675,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4006,4.3270,-0.7479) mvmt=(0.0675,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.272) lpos=(-10.401,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5756,0.1789,0.8773) mvmt=(0.0675,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5756,0.1789,0.8773) out=(-0.5756,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4006,4.3270,-0.4174) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.603) lpos=(-10.401,4.327,-0.417) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4006,4.3270,-0.4174) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.4006,4.3270,-0.4174) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5756,0.1789,1.2078) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3994,-0.0611,1.1028) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3994,-2.2723,-0.2472) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4827,-2.8266,2.6071) mvmt=(0.0265,0.0621,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4006,4.3270,-0.3974) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4006,4.3270,-0.4174) mvmt=(0.0675,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.901,7.173,93.603) lpos=(-10.401,4.327,-0.417) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4682,4.5297,-0.4135) mvmt=(0.0000,0.2027,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5297,-0.4135) mvmt=(0.0000,0.2027,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.970,93.606) lpos=(-10.468,4.530,-0.414) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5297,-0.4135) mvmt=(0.0000,0.2027,0.3344) 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.4682,4.5297,-0.4135) mvmt=(0.0000,0.2027,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.3817,1.2117) mvmt=(0.0000,0.2027,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1417,1.1067) mvmt=(0.0000,0.2027,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0696,-0.2433) mvmt=(0.0000,0.2027,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2697,-2.8092,2.6110) mvmt=(-0.1865,0.0795,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5297,-0.3935) mvmt=(0.0000,0.2027,0.3344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.970,93.606) lpos=(-10.468,4.530,-0.414) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3995,4.5487,-0.3945) mvmt=(0.0687,0.2217,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3995,4.5487,-0.3945) mvmt=(0.0687,0.2217,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,6.951,93.625) lpos=(-10.399,4.549,-0.395) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3995,4.5487,-0.3945) mvmt=(0.0687,0.2217,0.3534) 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.3995,4.5487,-0.3945) mvmt=(0.0687,0.2217,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5745,0.4007,1.2307) mvmt=(0.0687,0.2217,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4005,0.1607,1.1257) mvmt=(0.0687,0.2217,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4005,-2.0506,-0.2243) mvmt=(0.0687,0.2217,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2792,-2.7386,2.6300) mvmt=(-0.1770,0.1502,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3995,4.5487,-0.3745) mvmt=(0.0687,0.2217,0.3534) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,6.951,93.625) lpos=(-10.399,4.549,-0.395) lprev=(-10.468,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3995,4.3270,-0.7479) mvmt=(0.0687,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.173,93.272) lpos=(-10.399,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5745,0.1789,0.8773) mvmt=(0.0687,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3995,4.3270,-0.7479) mvmt=(0.0687,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.173,93.272) lpos=(-10.399,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5745,0.1789,0.8773) mvmt=(0.0687,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5745,0.1789,0.8773) out=(-0.5745,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3995,4.3270,-0.4174) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.173,93.603) lpos=(-10.399,4.327,-0.417) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3995,4.3270,-0.4174) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.3995,4.3270,-0.4174) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5745,0.1789,1.2078) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4005,-0.0611,1.1028) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4005,-2.2723,-0.2472) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4832,-2.8256,2.6071) mvmt=(0.0269,0.0632,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3995,4.3270,-0.3974) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.3995,4.3270,-0.4174) mvmt=(0.0687,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.173,93.603) lpos=(-10.399,4.327,-0.417) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4682,4.5439,-0.3993) mvmt=(0.0000,0.2169,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5439,-0.3993) mvmt=(0.0000,0.2169,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.956,93.621) lpos=(-10.468,4.544,-0.399) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5439,-0.3993) mvmt=(0.0000,0.2169,0.3486) 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.4682,4.5439,-0.3993) mvmt=(0.0000,0.2169,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.3959,1.2259) mvmt=(0.0000,0.2169,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1559,1.1209) mvmt=(0.0000,0.2169,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0554,-0.2291) mvmt=(0.0000,0.2169,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2567,-2.8037,2.6252) mvmt=(-0.1995,0.0851,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5439,-0.3793) mvmt=(0.0000,0.2169,0.3486) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.956,93.621) lpos=(-10.468,4.544,-0.399) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4034,4.5360,-0.4073) mvmt=(0.0647,0.2090,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4034,4.5360,-0.4073) mvmt=(0.0647,0.2090,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,6.964,93.613) lpos=(-10.403,4.536,-0.407) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4034,4.5360,-0.4073) mvmt=(0.0647,0.2090,0.3407) 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.4034,4.5360,-0.4073) mvmt=(0.0647,0.2090,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5784,0.3879,1.2179) mvmt=(0.0647,0.2090,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3966,0.1479,1.1129) mvmt=(0.0647,0.2090,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3966,-2.0633,-0.2371) mvmt=(0.0647,0.2090,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2894,-2.7472,2.6172) mvmt=(-0.1668,0.1415,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4034,4.5360,-0.3873) mvmt=(0.0647,0.2090,0.3407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,6.964,93.613) lpos=(-10.403,4.536,-0.407) lprev=(-10.468,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4034,4.3270,-0.7479) mvmt=(0.0647,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.272) lpos=(-10.403,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5784,0.1789,0.8773) mvmt=(0.0647,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4034,4.3270,-0.7479) mvmt=(0.0647,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.272) lpos=(-10.403,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5784,0.1789,0.8773) mvmt=(0.0647,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5784,0.1789,0.8773) out=(-0.5784,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4034,4.3270,-0.4174) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.603) lpos=(-10.403,4.327,-0.417) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4034,4.3270,-0.4174) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.4034,4.3270,-0.4174) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5784,0.1789,1.2078) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3966,-0.0611,1.1028) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3966,-2.2723,-0.2472) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4816,-2.8292,2.6071) mvmt=(0.0254,0.0595,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4034,4.3270,-0.3974) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4034,4.3270,-0.4174) mvmt=(0.0647,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.603) lpos=(-10.403,4.327,-0.417) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4682,4.5408,-0.4025) mvmt=(0.0000,0.2138,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5408,-0.4025) mvmt=(0.0000,0.2138,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.959,93.618) lpos=(-10.468,4.541,-0.402) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5408,-0.4025) mvmt=(0.0000,0.2138,0.3454) 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.4682,4.5408,-0.4025) mvmt=(0.0000,0.2138,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.3927,1.2227) mvmt=(0.0000,0.2138,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1527,1.1177) mvmt=(0.0000,0.2138,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0585,-0.2323) mvmt=(0.0000,0.2138,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2596,-2.8049,2.6220) mvmt=(-0.1966,0.0839,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5408,-0.3825) mvmt=(0.0000,0.2138,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.959,93.618) lpos=(-10.468,4.541,-0.402) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4027,4.5382,-0.4050) mvmt=(0.0654,0.2112,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4027,4.5382,-0.4050) mvmt=(0.0654,0.2112,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,6.962,93.615) lpos=(-10.403,4.538,-0.405) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4027,4.5382,-0.4050) mvmt=(0.0654,0.2112,0.3429) 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.4027,4.5382,-0.4050) mvmt=(0.0654,0.2112,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5777,0.3902,1.2202) mvmt=(0.0654,0.2112,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3973,0.1502,1.1152) mvmt=(0.0654,0.2112,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3973,-2.0611,-0.2348) mvmt=(0.0654,0.2112,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2876,-2.7457,2.6195) mvmt=(-0.1686,0.1430,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4027,4.5382,-0.3850) mvmt=(0.0654,0.2112,0.3429) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,6.962,93.615) lpos=(-10.403,4.538,-0.405) lprev=(-10.468,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4027,4.3270,-0.7479) mvmt=(0.0654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.272) lpos=(-10.403,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5777,0.1789,0.8773) mvmt=(0.0654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4027,4.3270,-0.7479) mvmt=(0.0654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.272) lpos=(-10.403,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5777,0.1789,0.8773) mvmt=(0.0654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5777,0.1789,0.8773) out=(-0.5777,0.1789,1.2078) delta=(0.0000,0.0000,0.3305) deltaMag=0.3305 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4492 dpPos=0.2463 dpMove=-0.4243 iDist=0.5508 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4027,4.3270,-0.4174) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.603) lpos=(-10.403,4.327,-0.417) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4027,4.3270,-0.4174) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 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.4027,4.3270,-0.4174) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5777,0.1789,1.2078) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3973,-0.0611,1.1028) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.3973,-2.2723,-0.2472) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(0.4819,-2.8286,2.6071) mvmt=(0.0257,0.0602,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4027,4.3270,-0.3974) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=0 objState=0x303 winterp=0.4492 return=-1 +[push-back-disp] site=dispatch center=(-10.4027,4.3270,-0.4174) mvmt=(0.0654,0.0000,0.3305) collide=False insertType=1 objState=0x303 winterp=0.4492 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.903,7.173,93.603) lpos=(-10.403,4.327,-0.417) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4682,4.5497,-0.3936) mvmt=(0.0000,0.2227,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5497,-0.3936) mvmt=(0.0000,0.2227,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.950,93.626) lpos=(-10.468,4.550,-0.394) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4682,4.5497,-0.3936) mvmt=(0.0000,0.2227,0.3543) 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.4682,4.5497,-0.3936) mvmt=(0.0000,0.2227,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6432,0.4016,1.2316) mvmt=(0.0000,0.2227,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,0.1616,1.1266) mvmt=(0.0000,0.2227,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3318,-2.0496,-0.2234) mvmt=(0.0000,0.2227,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2514,-2.8014,2.6309) mvmt=(-0.2048,0.0874,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4682,4.5497,-0.3736) mvmt=(0.0000,0.2227,0.3543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.968,6.950,93.626) lpos=(-10.468,4.550,-0.394) lprev=(-10.468,4.327,-0.748) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4641,4.5395,-0.4038) mvmt=(0.0041,0.2125,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5395,-0.4038) mvmt=(0.0041,0.2125,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.961,93.616) lpos=(-10.464,4.539,-0.404) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4641,4.5395,-0.4038) mvmt=(0.0041,0.2125,0.3441) 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.4641,4.5395,-0.4038) mvmt=(0.0041,0.2125,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6391,0.3914,1.2214) mvmt=(0.0041,0.2125,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,0.1514,1.1164) mvmt=(0.0041,0.2125,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-2.0598,-0.2336) mvmt=(0.0041,0.2125,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2624,-2.8017,2.6207) mvmt=(-0.1938,0.0871,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5395,-0.3838) mvmt=(0.0041,0.2125,0.3441) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.961,93.616) lpos=(-10.464,4.539,-0.404) lprev=(-10.468,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4641,4.3270,-0.7479) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,7.173,93.272) lpos=(-10.464,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6391,0.1789,0.8773) 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.3359,-0.0611,0.7723) 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.3359,-2.2723,-0.5777) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.3270,-0.7279) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.3270,-1.4979) mvmt=(0.0041,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,7.173,92.522) lpos=(-10.464,4.327,-1.498) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6391,0.1789,0.1273) 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.3359,-0.0611,0.0223) 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.3359,-0.0611,0.0223) out=(0.3359,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4641,4.3270,-0.7479) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,7.173,93.272) lpos=(-10.464,4.327,-0.748) lprev=(-10.468,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6391,0.1789,0.8773) 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.3359,-0.0611,0.7723) 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.3359,-2.2723,-0.5777) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.3270,-0.7279) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4966,4.5336,-0.5341) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,6.966,93.486) lpos=(-10.497,4.534,-0.534) lprev=(-10.464,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4966,4.5336,-0.5341) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6716,0.3856,1.0911) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,0.1456,0.9861) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,-2.0657,-0.3639) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2550,-2.8338,2.4904) mvmt=(-0.2028,0.0512,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4966,4.5336,-0.5141) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4966,4.5336,-0.5341) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,6.966,93.486) lpos=(-10.497,4.534,-0.534) lprev=(-10.464,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4966,4.5336,-0.5341) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6716,0.3856,1.0911) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,0.1456,0.9861) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,-2.0657,-0.3639) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2550,-2.8338,2.4904) mvmt=(-0.2028,0.0512,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4966,4.5336,-0.5141) mvmt=(-0.0325,0.2066,0.2138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4966,4.3270,-0.7479) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,7.173,93.272) lpos=(-10.497,4.327,-0.748) lprev=(-10.464,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6716,0.1789,0.8773) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,-0.0611,0.7723) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,-2.2723,-0.5777) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4966,4.3270,-0.7279) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4966,4.3270,-1.4979) mvmt=(-0.0325,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,7.173,92.522) lpos=(-10.497,4.327,-1.498) lprev=(-10.464,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6716,0.1789,0.1273) mvmt=(-0.0325,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,-0.0611,0.0223) mvmt=(-0.0325,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3034,-0.0611,0.0223) out=(0.3034,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4966,4.3270,-0.7479) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,7.173,93.272) lpos=(-10.497,4.327,-0.748) lprev=(-10.464,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6716,0.1789,0.8773) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,-0.0611,0.7723) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3034,-2.2723,-0.5777) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4966,4.3270,-0.7279) mvmt=(-0.0325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5649,4.5306,-0.5372) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.065,6.969,93.483) lpos=(-10.565,4.531,-0.537) lprev=(-10.497,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5649,4.5306,-0.5372) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7399,0.3826,1.0880) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,0.1426,0.9830) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,-2.0687,-0.3670) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2309,-2.8979,2.4873) mvmt=(-0.2141,0.0170,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5649,4.5306,-0.5172) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5649,4.5306,-0.5372) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.065,6.969,93.483) lpos=(-10.565,4.531,-0.537) lprev=(-10.497,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5649,4.5306,-0.5372) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7399,0.3826,1.0880) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,0.1426,0.9830) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,-2.0687,-0.3670) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2309,-2.8979,2.4873) mvmt=(-0.2141,0.0170,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5649,4.5306,-0.5172) mvmt=(-0.0683,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5649,4.3270,-0.7479) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.065,7.173,93.272) lpos=(-10.565,4.327,-0.748) lprev=(-10.497,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7399,0.1789,0.8773) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,-0.0611,0.7723) mvmt=(-0.0683,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,-2.2723,-0.5777) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5649,4.3270,-0.7279) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5649,4.3270,-1.4979) mvmt=(-0.0683,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.065,7.173,92.522) lpos=(-10.565,4.327,-1.498) lprev=(-10.497,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7399,0.1789,0.1273) mvmt=(-0.0683,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,-0.0611,0.0223) mvmt=(-0.0683,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2351,-0.0611,0.0223) out=(0.2351,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5649,4.3270,-0.7479) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.065,7.173,93.272) lpos=(-10.565,4.327,-0.748) lprev=(-10.497,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7399,0.1789,0.8773) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,-0.0611,0.7723) mvmt=(-0.0683,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2351,-2.2723,-0.5777) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5649,4.3270,-0.7279) mvmt=(-0.0683,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6659,4.5230,-0.5452) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,6.977,93.475) lpos=(-10.666,4.523,-0.545) lprev=(-10.565,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6659,4.5230,-0.5452) mvmt=(-0.1010,0.1960,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.8409,0.3749,1.0800) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1341,0.1349,0.9750) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1341,-2.0763,-0.3750) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1984,-2.9937,2.4793) mvmt=(-0.2199,-0.0160,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6659,4.5230,-0.5252) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6659,4.5230,-0.5452) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,6.977,93.475) lpos=(-10.666,4.523,-0.545) lprev=(-10.565,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6659,4.5230,-0.5452) mvmt=(-0.1010,0.1960,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.8409,0.3749,1.0800) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1341,0.1349,0.9750) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1341,-2.0763,-0.3750) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1984,-2.9937,2.4793) mvmt=(-0.2199,-0.0160,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6659,4.5230,-0.5252) mvmt=(-0.1010,0.1960,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6659,4.3270,-0.7479) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.173,93.272) lpos=(-10.666,4.327,-0.748) lprev=(-10.565,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8409,0.1789,0.8773) 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.1341,-0.0611,0.7723) 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.1341,-2.2723,-0.5777) 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.6659,4.3270,-0.7279) 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.6659,4.3270,-1.4979) mvmt=(-0.1010,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.173,92.522) lpos=(-10.666,4.327,-1.498) lprev=(-10.565,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8409,0.1789,0.1273) 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.1341,-0.0611,0.0223) 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.1341,-0.0611,0.0223) out=(0.1341,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6659,4.3270,-0.7479) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.173,93.272) lpos=(-10.666,4.327,-0.748) lprev=(-10.565,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8409,0.1789,0.8773) 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.1341,-0.0611,0.7723) 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.1341,-2.2723,-0.5777) 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.6659,4.3270,-0.7279) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7815,4.5274,-0.5406) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.281,6.973,93.479) lpos=(-10.781,4.527,-0.541) lprev=(-10.666,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7815,4.5274,-0.5406) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9565,0.3793,1.0846) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,0.1393,0.9796) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,-2.0719,-0.3704) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1490,-3.0983,2.4839) mvmt=(-0.2297,-0.0277,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7815,4.5274,-0.5206) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7815,4.5274,-0.5406) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.281,6.973,93.479) lpos=(-10.781,4.527,-0.541) lprev=(-10.666,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7815,4.5274,-0.5406) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9565,0.3793,1.0846) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,0.1393,0.9796) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,-2.0719,-0.3704) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1490,-3.0983,2.4839) mvmt=(-0.2297,-0.0277,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7815,4.5274,-0.5206) mvmt=(-0.1156,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7815,4.3270,-0.7479) mvmt=(-0.1156,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.281,7.173,93.272) lpos=(-10.781,4.327,-0.748) lprev=(-10.666,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9565,0.1789,0.8773) mvmt=(-0.1156,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,-0.0611,0.7723) mvmt=(-0.1156,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,-2.2723,-0.5777) mvmt=(-0.1156,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7815,4.3270,-0.7279) mvmt=(-0.1156,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7815,4.3270,-1.4979) mvmt=(-0.1156,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.281,7.173,92.522) lpos=(-10.781,4.327,-1.498) lprev=(-10.666,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9565,0.1789,0.1273) mvmt=(-0.1156,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,-0.0611,0.0223) mvmt=(-0.1156,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0185,-0.0611,0.0223) out=(0.0185,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7815,4.3270,-0.7479) mvmt=(-0.1156,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.281,7.173,93.272) lpos=(-10.781,4.327,-0.748) lprev=(-10.666,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9565,0.1789,0.8773) mvmt=(-0.1156,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,-0.0611,0.7723) mvmt=(-0.1156,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0185,-2.2723,-0.5777) mvmt=(-0.1156,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7815,4.3270,-0.7279) mvmt=(-0.1156,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8968,4.5269,-0.5411) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.397,6.973,93.479) lpos=(-10.897,4.527,-0.541) lprev=(-10.781,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8968,4.5269,-0.5411) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0718,0.3789,1.0841) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,0.1389,0.9791) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,-2.0724,-0.3709) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8968,4.5269,-0.5211) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8968,4.5269,-0.5411) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.397,6.973,93.479) lpos=(-10.897,4.527,-0.541) lprev=(-10.781,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8968,4.5269,-0.5411) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0718,0.3789,1.0841) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,0.1389,0.9791) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,-2.0724,-0.3709) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8968,4.5269,-0.5211) mvmt=(-0.1153,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8968,4.3270,-0.7479) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.397,7.173,93.272) lpos=(-10.897,4.327,-0.748) lprev=(-10.781,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0718,0.1789,0.8773) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,-0.0611,0.7723) mvmt=(-0.1153,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,-2.2723,-0.5777) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8968,4.3270,-0.7279) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8968,4.3270,-1.4979) mvmt=(-0.1153,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.397,7.173,92.522) lpos=(-10.897,4.327,-1.498) lprev=(-10.781,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0718,0.1789,0.1273) mvmt=(-0.1153,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,-0.0611,0.0223) mvmt=(-0.1153,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0968,-0.0611,0.0223) out=(-0.0968,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8968,4.3270,-0.7479) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.397,7.173,93.272) lpos=(-10.897,4.327,-0.748) lprev=(-10.781,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0718,0.1789,0.8773) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,-0.0611,0.7723) mvmt=(-0.1153,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0968,-2.2723,-0.5777) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8968,4.3270,-0.7279) mvmt=(-0.1153,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0151,4.5320,-0.5358) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.968,93.484) lpos=(-11.015,4.532,-0.536) lprev=(-10.897,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5320,-0.5358) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3840,1.0894) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1440,0.9844) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0673,-0.3656) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5320,-0.5158) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5320,-0.5358) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.968,93.484) lpos=(-11.015,4.532,-0.536) lprev=(-10.897,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5320,-0.5358) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3840,1.0894) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1440,0.9844) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0673,-0.3656) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5320,-0.5158) mvmt=(-0.1183,0.2050,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.3270,-0.7479) mvmt=(-0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.173,93.272) lpos=(-11.015,4.327,-0.748) lprev=(-10.897,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1901,0.1789,0.8773) 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.2151,-0.0611,0.7723) 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.2151,-2.2723,-0.5777) mvmt=(-0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.3270,-0.7279) mvmt=(-0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.3270,-1.4979) mvmt=(-0.1183,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.173,92.522) lpos=(-11.015,4.327,-1.498) lprev=(-10.897,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1901,0.1789,0.1273) 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.2151,-0.0611,0.0223) 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.2151,-0.0611,0.0223) out=(-0.2151,-0.0611,0.7723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0151,4.3270,-0.7479) mvmt=(-0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.173,93.272) lpos=(-11.015,4.327,-0.748) lprev=(-10.897,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1901,0.1789,0.8773) 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.2151,-0.0611,0.7723) 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.2151,-2.2723,-0.5777) mvmt=(-0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.3270,-0.7279) mvmt=(-0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1250,4.5175,-0.5508) mvmt=(-0.1099,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1250,4.5175,-0.5508) mvmt=(-0.1099,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.625,6.982,93.469) lpos=(-11.125,4.518,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1250,4.5175,-0.5508) mvmt=(-0.1099,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.3000,0.3695,1.0744) mvmt=(-0.1099,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3250,0.1295,0.9694) mvmt=(-0.1099,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3250,-2.0818,-0.3806) mvmt=(-0.1099,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1250,4.5175,-0.5308) mvmt=(-0.1099,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.625,6.982,93.469) lpos=(-11.125,4.518,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5175,-0.5508) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.982,93.469) lpos=(-11.015,4.518,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5175,-0.5508) mvmt=(0.0000,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.1901,0.3695,1.0744) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1295,0.9694) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0818,-0.3806) mvmt=(-0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5175,-0.5308) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5175,-0.5508) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.982,93.469) lpos=(-11.015,4.518,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5175,-0.5508) mvmt=(0.0000,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.1901,0.3695,1.0744) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1295,0.9694) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0818,-0.3806) mvmt=(-0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5175,-0.5308) mvmt=(0.0000,0.1905,0.1971) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1240,4.5159,-0.5525) mvmt=(-0.1089,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1240,4.5159,-0.5525) mvmt=(-0.1089,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.624,6.984,93.467) lpos=(-11.124,4.516,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1240,4.5159,-0.5525) mvmt=(-0.1089,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2990,0.3678,1.0727) mvmt=(-0.1089,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3240,0.1278,0.9677) mvmt=(-0.1089,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3240,-2.0834,-0.3823) mvmt=(-0.1089,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1240,4.5159,-0.5325) mvmt=(-0.1089,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.624,6.984,93.467) lpos=(-11.124,4.516,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5159,-0.5525) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.984,93.467) lpos=(-11.015,4.516,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5159,-0.5525) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3678,1.0727) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1278,0.9677) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0834,-0.3823) mvmt=(-0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5159,-0.5325) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5159,-0.5525) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.984,93.467) lpos=(-11.015,4.516,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5159,-0.5525) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3678,1.0727) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1278,0.9677) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0834,-0.3823) mvmt=(-0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5159,-0.5325) mvmt=(0.0000,0.1889,0.1954) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1257,4.5188,-0.5495) mvmt=(-0.1107,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1257,4.5188,-0.5495) mvmt=(-0.1107,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.626,6.981,93.471) lpos=(-11.126,4.519,-0.549) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1257,4.5188,-0.5495) mvmt=(-0.1107,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3007,0.3708,1.0757) mvmt=(-0.1107,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3257,0.1308,0.9707) mvmt=(-0.1107,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3257,-2.0805,-0.3793) mvmt=(-0.1107,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1257,4.5188,-0.5295) mvmt=(-0.1107,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.626,6.981,93.471) lpos=(-11.126,4.519,-0.549) lprev=(-11.015,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5188,-0.5495) mvmt=(0.0000,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.981,93.471) lpos=(-11.015,4.519,-0.549) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5188,-0.5495) mvmt=(0.0000,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3708,1.0757) 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.2151,0.1308,0.9707) 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.2151,-2.0805,-0.3793) mvmt=(-0.0000,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5188,-0.5295) mvmt=(0.0000,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5188,-0.5495) mvmt=(0.0000,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.981,93.471) lpos=(-11.015,4.519,-0.549) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5188,-0.5495) mvmt=(0.0000,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3708,1.0757) 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.2151,0.1308,0.9707) 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.2151,-2.0805,-0.3793) mvmt=(-0.0000,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5188,-0.5295) mvmt=(0.0000,0.1918,0.1984) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1235,4.5150,-0.5534) mvmt=(-0.1084,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1235,4.5150,-0.5534) mvmt=(-0.1084,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.624,6.985,93.467) lpos=(-11.124,4.515,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1235,4.5150,-0.5534) mvmt=(-0.1084,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2985,0.3670,1.0718) mvmt=(-0.1084,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3235,0.1270,0.9668) mvmt=(-0.1084,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3235,-2.0843,-0.3832) mvmt=(-0.1084,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1235,4.5150,-0.5334) mvmt=(-0.1084,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.624,6.985,93.467) lpos=(-11.124,4.515,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5150,-0.5534) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.985,93.467) lpos=(-11.015,4.515,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5150,-0.5534) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3670,1.0718) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1270,0.9668) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0843,-0.3832) mvmt=(-0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5150,-0.5334) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5150,-0.5534) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.985,93.467) lpos=(-11.015,4.515,-0.553) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5150,-0.5534) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1901,0.3670,1.0718) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1270,0.9668) mvmt=(0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0843,-0.3832) mvmt=(-0.0000,0.1880,0.1945) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5150,-0.5334) mvmt=(0.0000,0.1880,0.1945) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1246,4.5170,-0.5514) mvmt=(-0.1096,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1246,4.5170,-0.5514) mvmt=(-0.1096,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.625,6.983,93.469) lpos=(-11.125,4.517,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1246,4.5170,-0.5514) mvmt=(-0.1096,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.2997,0.3689,1.0738) mvmt=(-0.1096,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3246,0.1289,0.9688) mvmt=(-0.1096,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3246,-2.0823,-0.3812) mvmt=(-0.1096,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1246,4.5170,-0.5314) mvmt=(-0.1096,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.625,6.983,93.469) lpos=(-11.125,4.517,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5170,-0.5514) mvmt=(0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.983,93.469) lpos=(-11.015,4.517,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5170,-0.5514) mvmt=(0.0000,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.1901,0.3689,1.0738) mvmt=(0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1289,0.9688) mvmt=(0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0823,-0.3812) mvmt=(-0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5170,-0.5314) mvmt=(0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5170,-0.5514) mvmt=(0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,6.983,93.469) lpos=(-11.015,4.517,-0.551) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0151,4.5170,-0.5514) mvmt=(0.0000,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.1901,0.3689,1.0738) mvmt=(0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,0.1289,0.9688) mvmt=(0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2151,-2.0823,-0.3812) mvmt=(-0.0000,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0151,4.5170,-0.5314) mvmt=(0.0000,0.1900,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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9606,4.2326,-0.8455) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.267,93.174) lpos=(-10.961,4.233,-0.846) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1356,0.0846,0.7797) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1606,-0.1554,0.6747) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1606,-2.3667,-0.6753) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9606,4.2326,-0.8255) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9606,4.2326,-1.5955) mvmt=(0.0544,-0.0944,-0.8476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.267,92.424) lpos=(-10.961,4.233,-1.596) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1356,0.0846,0.0297) mvmt=(0.0544,-0.0944,-0.8476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1606,-0.1554,-0.0753) mvmt=(0.0544,-0.0944,-0.8476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1606,-0.1554,-0.0753) out=(-0.1606,-0.1554,0.6747) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9606,4.2326,-0.8455) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.461,7.267,93.174) lpos=(-10.961,4.233,-0.846) lprev=(-11.015,4.327,-0.748) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1356,0.0846,0.7797) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1606,-0.1554,0.6747) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1606,-2.3667,-0.6753) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9606,4.2326,-0.8255) mvmt=(0.0544,-0.0944,-0.0976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9060,4.1380,-0.9435) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.406,7.362,93.077) lpos=(-10.906,4.138,-0.943) lprev=(-10.961,4.233,-0.846) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0810,-0.0101,0.6817) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1060,-0.2501,0.5767) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1060,-2.4614,-0.7733) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9060,4.1380,-0.9235) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9060,4.1380,-1.6935) mvmt=(0.0546,-0.0947,-0.8479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.406,7.362,92.327) lpos=(-10.906,4.138,-1.693) lprev=(-10.961,4.233,-0.846) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0810,-0.0101,-0.0683) mvmt=(0.0546,-0.0947,-0.8479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1060,-0.2501,-0.1733) mvmt=(0.0546,-0.0947,-0.8479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1060,-0.2501,-0.1733) out=(-0.1060,-0.2501,0.5767) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9060,4.1380,-0.9435) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.406,7.362,93.077) lpos=(-10.906,4.138,-0.943) lprev=(-10.961,4.233,-0.846) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0810,-0.0101,0.6817) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1060,-0.2501,0.5767) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1060,-2.4614,-0.7733) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9060,4.1380,-0.9235) mvmt=(0.0546,-0.0947,-0.0979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8448,4.0318,-1.0533) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.468,92.967) lpos=(-10.845,4.032,-1.053) lprev=(-10.906,4.138,-0.943) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0198,-0.1163,0.5719) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0448,-0.3563,0.4669) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0448,-2.5676,-0.8831) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8448,4.0318,-1.0333) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8448,4.0318,-1.8033) mvmt=(0.0612,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.468,92.217) lpos=(-10.845,4.032,-1.803) lprev=(-10.906,4.138,-0.943) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0198,-0.1163,-0.1781) mvmt=(0.0612,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0448,-0.3563,-0.2831) mvmt=(0.0612,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0448,-0.3563,-0.2831) out=(-0.0448,-0.3563,0.4669) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8448,4.0318,-1.0533) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.468,92.967) lpos=(-10.845,4.032,-1.053) lprev=(-10.906,4.138,-0.943) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0198,-0.1163,0.5719) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0448,-0.3563,0.4669) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0448,-2.5676,-0.8831) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8448,4.0318,-1.0333) mvmt=(0.0612,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7895,3.9360,-1.1524) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.290,7.564,92.868) lpos=(-10.790,3.936,-1.152) lprev=(-10.845,4.032,-1.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9645,-0.2121,0.4728) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0105,-0.4521,0.3678) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0105,-2.6633,-0.9822) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7895,3.9360,-1.1324) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7895,3.9360,-1.9024) mvmt=(0.0552,-0.0958,-0.8491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.290,7.564,92.118) lpos=(-10.790,3.936,-1.902) lprev=(-10.845,4.032,-1.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9645,-0.2121,-0.2772) mvmt=(0.0552,-0.0958,-0.8491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0105,-0.4521,-0.3822) mvmt=(0.0552,-0.0958,-0.8491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0105,-0.4521,-0.3822) out=(0.0105,-0.4521,0.3678) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7895,3.9360,-1.1524) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.290,7.564,92.868) lpos=(-10.790,3.936,-1.152) lprev=(-10.845,4.032,-1.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9645,-0.2121,0.4728) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0105,-0.4521,0.3678) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0105,-2.6633,-0.9822) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7895,3.9360,-1.1324) mvmt=(0.0552,-0.0958,-0.0991) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7351,3.8416,-1.2501) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.658,92.770) lpos=(-10.735,3.842,-1.250) lprev=(-10.790,3.936,-1.152) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9101,-0.3065,0.3751) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-0.5465,0.2701) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-2.7577,-1.0799) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7351,3.8416,-1.2301) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7351,3.8416,-2.0001) mvmt=(0.0545,-0.0944,-0.8477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.658,92.020) lpos=(-10.735,3.842,-2.000) lprev=(-10.790,3.936,-1.152) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9101,-0.3065,-0.3749) mvmt=(0.0545,-0.0944,-0.8477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-0.5465,-0.4799) mvmt=(0.0545,-0.0944,-0.8477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0649,-0.5465,-0.4799) out=(0.0649,-0.5465,0.2701) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7351,3.8416,-1.2501) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,7.658,92.770) lpos=(-10.735,3.842,-1.250) lprev=(-10.790,3.936,-1.152) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9101,-0.3065,0.3751) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-0.5465,0.2701) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-2.7577,-1.0799) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7351,3.8416,-1.2301) mvmt=(0.0545,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6729,3.7338,-1.3615) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.766,92.658) lpos=(-10.673,3.734,-1.362) lprev=(-10.735,3.842,-1.250) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8479,-0.4142,0.2637) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1271,-0.6542,0.1587) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1271,-2.8655,-1.1913) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6729,3.7338,-1.3415) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6729,3.7338,-2.1115) mvmt=(0.0621,-0.1077,-0.8615) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.766,91.908) lpos=(-10.673,3.734,-2.112) lprev=(-10.735,3.842,-1.250) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8479,-0.4142,-0.4863) mvmt=(0.0621,-0.1077,-0.8615) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1271,-0.6542,-0.5913) mvmt=(0.0621,-0.1077,-0.8615) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1271,-0.6542,-0.5913) out=(0.1271,-0.6542,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=(-10.6729,3.7338,-1.3615) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.766,92.658) lpos=(-10.673,3.734,-1.362) lprev=(-10.735,3.842,-1.250) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8479,-0.4142,0.2637) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1271,-0.6542,0.1587) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1271,-2.8655,-1.1913) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6729,3.7338,-1.3415) mvmt=(0.0621,-0.1077,-0.1115) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6124,3.6290,-1.4700) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,7.871,92.550) lpos=(-10.612,3.629,-1.470) lprev=(-10.673,3.734,-1.362) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7874,-0.5190,0.1552) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-0.7590,0.0502) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-2.9703,-1.2998) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,3.6290,-1.4500) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,3.6290,-2.2200) mvmt=(0.0605,-0.1048,-0.8584) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,7.871,91.800) lpos=(-10.612,3.629,-2.220) lprev=(-10.673,3.734,-1.362) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7874,-0.5190,-0.5948) mvmt=(0.0605,-0.1048,-0.8584) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-0.7590,-0.6998) mvmt=(0.0605,-0.1048,-0.8584) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1876,-0.7590,-0.6998) out=(0.1876,-0.7590,0.0502) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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,3.6290,-1.4700) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,7.871,92.550) lpos=(-10.612,3.629,-1.470) lprev=(-10.673,3.734,-1.362) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7874,-0.5190,0.1552) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-0.7590,0.0502) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-2.9703,-1.2998) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,3.6290,-1.4500) mvmt=(0.0605,-0.1048,-0.1084) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5581,3.5348,-1.5674) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.058,7.965,92.453) lpos=(-10.558,3.535,-1.567) lprev=(-10.612,3.629,-1.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7331,-0.6133,0.0578) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2419,-0.8533,-0.0472) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2419,-3.0645,-1.3972) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5581,3.5348,-1.5474) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5581,3.5348,-2.3174) mvmt=(0.0544,-0.0942,-0.8475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.058,7.965,91.703) lpos=(-10.558,3.535,-2.317) lprev=(-10.612,3.629,-1.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7331,-0.6133,-0.6922) mvmt=(0.0544,-0.0942,-0.8475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2419,-0.8533,-0.7972) mvmt=(0.0544,-0.0942,-0.8475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2419,-0.8533,-0.7972) out=(0.2419,-0.8533,-0.0472) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5581,3.5348,-1.5674) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.058,7.965,92.453) lpos=(-10.558,3.535,-1.567) lprev=(-10.612,3.629,-1.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7331,-0.6133,0.0578) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2419,-0.8533,-0.0472) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2419,-3.0645,-1.3972) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5581,3.5348,-1.5474) mvmt=(0.0544,-0.0942,-0.0975) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4972,3.4292,-1.6767) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,8.071,92.343) lpos=(-10.497,3.429,-1.677) lprev=(-10.558,3.535,-1.567) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6722,-0.7189,-0.0515) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3028,-0.9589,-0.1565) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3028,-3.1701,-1.5065) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4972,3.4292,-1.6567) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4972,3.4292,-2.4267) mvmt=(0.0609,-0.1056,-0.8593) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,8.071,91.593) lpos=(-10.497,3.429,-2.427) lprev=(-10.558,3.535,-1.567) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6722,-0.7189,-0.8015) mvmt=(0.0609,-0.1056,-0.8593) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3028,-0.9589,-0.9065) mvmt=(0.0609,-0.1056,-0.8593) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3028,-0.9589,-0.9065) out=(0.3028,-0.9589,-0.1565) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4972,3.4292,-1.6767) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.997,8.071,92.343) lpos=(-10.497,3.429,-1.677) lprev=(-10.558,3.535,-1.567) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6722,-0.7189,-0.0515) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3028,-0.9589,-0.1565) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3028,-3.1701,-1.5065) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4972,3.4292,-1.6567) mvmt=(0.0609,-0.1056,-0.1093) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4369,3.3247,-1.7848) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,8.175,92.235) lpos=(-10.437,3.325,-1.785) lprev=(-10.497,3.429,-1.677) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6119,-0.8233,-0.1596) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3631,-1.0633,-0.2646) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3631,-3.2746,-1.6146) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4369,3.3247,-1.7648) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4369,3.3247,-2.5348) mvmt=(0.0603,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,8.175,91.485) lpos=(-10.437,3.325,-2.535) lprev=(-10.497,3.429,-1.677) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6119,-0.8233,-0.9096) mvmt=(0.0603,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3631,-1.0633,-1.0146) mvmt=(0.0603,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3631,-1.0633,-1.0146) out=(0.3631,-1.0633,-0.2646) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4369,3.3247,-1.7848) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,8.175,92.235) lpos=(-10.437,3.325,-1.785) lprev=(-10.497,3.429,-1.677) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6119,-0.8233,-0.1596) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3631,-1.0633,-0.2646) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3631,-3.2746,-1.6146) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4369,3.3247,-1.7648) mvmt=(0.0603,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3758,3.2188,-1.8944) mvmt=(0.0611,-0.1060,-0.1096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,8.281,92.126) lpos=(-10.376,3.219,-1.894) lprev=(-10.437,3.325,-1.785) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5508,-0.9293,-0.2692) mvmt=(0.0611,-0.1060,-0.1096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3758,3.2188,-1.8944) mvmt=(0.0611,-0.1060,-0.1096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,8.281,92.126) lpos=(-10.376,3.219,-1.894) lprev=(-10.437,3.325,-1.785) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5508,-0.9293,-0.2692) mvmt=(0.0611,-0.1060,-0.1096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5508,-0.9293,-0.2692) out=(-0.5508,-0.9293,0.0995) delta=(0.0000,0.0000,0.3687) deltaMag=0.3687 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3855 dpPos=0.2193 dpMove=-0.4243 iDist=0.6145 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.3758,3.2188,-1.5257) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,8.281,92.494) lpos=(-10.376,3.219,-1.526) lprev=(-10.437,3.325,-1.785) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5508,-0.9293,0.0995) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(0.4242,-1.1693,-0.0055) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(0.4242,-3.3806,-1.3555) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(1.5118,-3.2386,1.4988) mvmt=(0.1214,0.0146,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(-10.3758,3.2188,-1.5057) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(-10.3758,3.2188,-1.5257) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=1 objState=0x303 winterp=0.3855 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,8.281,92.494) lpos=(-10.376,3.219,-1.526) lprev=(-10.437,3.325,-1.785) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5508,-0.9293,0.0995) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=1 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(0.4242,-1.1693,-0.0055) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=1 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(0.4242,-3.3806,-1.3555) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=1 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(1.5118,-3.2386,1.4988) mvmt=(0.1214,0.0146,0.2591) collide=False insertType=1 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(-10.3758,3.2188,-1.5057) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=1 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(0.4242,-1.1693,-0.0055) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(0.4242,-3.3806,-1.3555) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[push-back-disp] site=dispatch center=(-10.3758,3.2188,-1.5057) mvmt=(0.0611,-0.1060,0.2591) collide=False insertType=0 objState=0x303 winterp=0.3855 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3161,3.1116,-1.6328) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.816,8.388,92.387) lpos=(-10.316,3.112,-1.633) lprev=(-10.376,3.219,-1.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4911,-1.0364,-0.0076) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4839,-1.2764,-0.1126) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4839,-3.4877,-1.4626) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3161,3.1116,-1.6128) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3161,3.1116,-2.3828) mvmt=(0.0597,-0.1072,-0.8572) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.816,8.388,91.637) lpos=(-10.316,3.112,-2.383) lprev=(-10.376,3.219,-1.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4911,-1.0364,-0.7576) mvmt=(0.0597,-0.1072,-0.8572) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4911,-1.0364,-0.7576) out=(-0.4911,-1.0364,-0.0076) 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.3161,3.1116,-1.6328) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.816,8.388,92.387) lpos=(-10.316,3.112,-1.633) lprev=(-10.376,3.219,-1.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4911,-1.0364,-0.0076) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4839,-1.2764,-0.1126) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4839,-3.4877,-1.4626) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3161,3.1116,-1.6128) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2564,3.0045,-1.7400) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.756,8.496,92.280) lpos=(-10.256,3.004,-1.740) lprev=(-10.316,3.112,-1.633) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4314,-1.1436,-0.1148) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5436,-1.3836,-0.2198) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5436,-3.5948,-1.5698) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2564,3.0045,-1.7200) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2564,3.0045,-2.4900) mvmt=(0.0597,-0.1071,-0.8571) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.756,8.496,91.530) lpos=(-10.256,3.004,-2.490) lprev=(-10.316,3.112,-1.633) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4314,-1.1436,-0.8648) mvmt=(0.0597,-0.1071,-0.8571) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4314,-1.1436,-0.8648) out=(-0.4314,-1.1436,-0.1148) 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.2564,3.0045,-1.7400) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.756,8.496,92.280) lpos=(-10.256,3.004,-1.740) lprev=(-10.316,3.112,-1.633) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4314,-1.1436,-0.1148) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5436,-1.3836,-0.2198) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5436,-3.5948,-1.5698) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2564,3.0045,-1.7200) mvmt=(0.0597,-0.1071,-0.1071) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1956,2.8954,-1.8490) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.696,8.605,92.171) lpos=(-10.196,2.895,-1.849) lprev=(-10.256,3.004,-1.740) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3706,-1.2527,-0.2238) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6044,-1.4927,-0.3288) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6044,-3.7039,-1.6788) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1956,2.8954,-1.8290) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1956,2.8954,-2.5990) mvmt=(0.0608,-0.1091,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1956,2.8954,-2.5990) out=(-10.1956,2.8954,-2.5700) delta=(0.0000,0.0000,0.0290) deltaMag=0.0290 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9613 dpPos=0.4510 dpMove=-0.7500 iDist=0.0387 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.696,8.605,91.421) lpos=(-10.196,2.895,-2.599) lprev=(-10.256,3.004,-1.740) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1956,2.8954,-2.5700) mvmt=(0.0608,-0.1091,-0.8300) collide=False insertType=0 objState=0x303 winterp=0.9613 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.696,8.605,91.450) lpos=(-10.196,2.895,-2.570) lprev=(-10.256,3.004,-1.740) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3706,-1.2527,-0.9448) mvmt=(0.0608,-0.1091,-0.8300) collide=False insertType=0 objState=0x303 winterp=0.9613 return=-1 +[push-back] site=adjust_sphere in=(-0.3706,-1.2527,-0.9448) out=(-0.3706,-1.2527,-0.2238) delta=(0.0000,0.0000,0.7210) deltaMag=0.7210 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.9613->0.0000 dpPos=-0.0298 dpMove=-0.5098 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=(-10.1956,2.8954,-1.8490) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.696,8.605,92.171) lpos=(-10.196,2.895,-1.849) lprev=(-10.256,3.004,-1.740) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3706,-1.2527,-0.2238) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6044,-1.4927,-0.3288) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6044,-3.7039,-1.6788) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1956,2.8954,-1.8290) mvmt=(0.0608,-0.1091,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1409,2.7972,-1.9472) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.641,8.703,92.073) lpos=(-10.141,2.797,-1.947) lprev=(-10.196,2.895,-1.849) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3159,-1.3508,-0.3220) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6591,-1.5908,-0.4270) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6591,-3.8021,-1.7770) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1409,2.7972,-1.9272) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1409,2.7972,-2.6972) mvmt=(0.0547,-0.0982,-0.8482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1409,2.7972,-2.6972) out=(-10.1409,2.7972,-2.5700) delta=(0.0000,0.0000,0.1272) deltaMag=0.1272 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8304 dpPos=0.3528 dpMove=-0.7500 iDist=0.1696 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.641,8.703,91.323) lpos=(-10.141,2.797,-2.697) lprev=(-10.196,2.895,-1.849) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1409,2.7972,-2.5700) mvmt=(0.0547,-0.0982,-0.7210) collide=False insertType=0 objState=0x303 winterp=0.8304 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.641,8.703,91.450) lpos=(-10.141,2.797,-2.570) lprev=(-10.196,2.895,-1.849) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3159,-1.3508,-0.9448) mvmt=(0.0547,-0.0982,-0.7210) collide=False insertType=0 objState=0x303 winterp=0.8304 return=-1 +[push-back] site=adjust_sphere in=(-0.3159,-1.3508,-0.9448) out=(-0.3159,-1.3508,-0.3220) delta=(0.0000,0.0000,0.6228) deltaMag=0.6228 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.8304->-0.0000 dpPos=0.0396 dpMove=-0.4404 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=(-10.1409,2.7972,-1.9472) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.641,8.703,92.073) lpos=(-10.141,2.797,-1.947) lprev=(-10.196,2.895,-1.849) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3159,-1.3508,-0.3220) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6591,-1.5908,-0.4270) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6591,-3.8021,-1.7770) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1409,2.7972,-1.9272) mvmt=(0.0547,-0.0982,-0.0982) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0819,2.6914,-2.0530) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.582,8.809,91.967) lpos=(-10.082,2.691,-2.053) lprev=(-10.141,2.797,-1.947) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2569,-1.4566,-0.4278) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7181,-1.6966,-0.5328) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0819,2.6914,-2.0330) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0819,2.6914,-2.8030) mvmt=(0.0590,-0.1058,-0.8558) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.0819,2.6914,-2.8030) out=(-10.0819,2.6914,-2.5700) delta=(0.0000,0.0000,0.2330) deltaMag=0.2330 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6893 dpPos=0.2470 dpMove=-0.7500 iDist=0.3107 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.582,8.809,91.217) lpos=(-10.082,2.691,-2.803) lprev=(-10.141,2.797,-1.947) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.0819,2.6914,-2.5700) mvmt=(0.0590,-0.1058,-0.6228) collide=False insertType=0 objState=0x303 winterp=0.6893 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.582,8.809,91.450) lpos=(-10.082,2.691,-2.570) lprev=(-10.141,2.797,-1.947) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2569,-1.4566,-0.9448) mvmt=(0.0590,-0.1058,-0.6228) collide=False insertType=0 objState=0x303 winterp=0.6893 return=-1 +[push-back] site=adjust_sphere in=(-0.2569,-1.4566,-0.9448) out=(-0.2569,-1.4566,-0.4278) delta=(0.0000,0.0000,0.5170) deltaMag=0.5170 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.6893->0.0000 dpPos=0.1144 dpMove=-0.3656 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=(-10.0819,2.6914,-2.0530) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.582,8.809,91.967) lpos=(-10.082,2.691,-2.053) lprev=(-10.141,2.797,-1.947) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2569,-1.4566,-0.4278) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7181,-1.6966,-0.5328) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0819,2.6914,-2.0330) mvmt=(0.0590,-0.1058,-0.1058) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0219,2.5836,-2.1608) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.522,8.916,91.859) lpos=(-10.022,2.584,-2.161) lprev=(-10.082,2.691,-2.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1969,-1.5645,-0.5356) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7782,-1.8045,-0.6406) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0219,2.5836,-2.1408) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0219,2.5836,-2.9108) mvmt=(0.0601,-0.1078,-0.8578) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.0219,2.5836,-2.9108) out=(-10.0219,2.5836,-2.5700) delta=(0.0000,0.0000,0.3408) deltaMag=0.3408 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.5455 dpPos=0.1392 dpMove=-0.7500 iDist=0.4545 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.522,8.916,91.109) lpos=(-10.022,2.584,-2.911) lprev=(-10.082,2.691,-2.053) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.0219,2.5836,-2.5700) mvmt=(0.0601,-0.1078,-0.5170) collide=False insertType=0 objState=0x303 winterp=0.5455 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.522,8.916,91.450) lpos=(-10.022,2.584,-2.570) lprev=(-10.082,2.691,-2.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1969,-1.5645,-0.9448) mvmt=(0.0601,-0.1078,-0.5170) collide=False insertType=0 objState=0x303 winterp=0.5455 return=-1 +[push-back] site=adjust_sphere in=(-0.1969,-1.5645,-0.9448) out=(-0.1969,-1.5645,-0.5356) delta=(0.0000,0.0000,0.4092) deltaMag=0.4092 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.5455->0.0000 dpPos=0.1907 dpMove=-0.2893 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=(-10.0219,2.5836,-2.1608) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.522,8.916,91.859) lpos=(-10.022,2.584,-2.161) lprev=(-10.082,2.691,-2.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1969,-1.5645,-0.5356) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7782,-1.8045,-0.6406) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0219,2.5836,-2.1408) mvmt=(0.0601,-0.1078,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.9621,2.4764,-2.2680) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.462,9.024,91.752) lpos=(-9.962,2.476,-2.268) lprev=(-10.022,2.584,-2.161) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1371,-1.6716,-0.6428) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8379,-1.9116,-0.7478) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9621,2.4764,-2.2480) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9621,2.4764,-3.0180) mvmt=(0.0597,-0.1072,-0.8572) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.9621,2.4764,-3.0180) out=(-9.9621,2.4764,-2.5700) delta=(0.0000,0.0000,0.4480) deltaMag=0.4480 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.4026 dpPos=0.0320 dpMove=-0.7500 iDist=0.5974 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.462,9.024,91.002) lpos=(-9.962,2.476,-3.018) lprev=(-10.022,2.584,-2.161) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.9621,2.4764,-2.5700) mvmt=(0.0597,-0.1072,-0.4092) collide=False insertType=0 objState=0x303 winterp=0.4026 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.462,9.024,91.450) lpos=(-9.962,2.476,-2.570) lprev=(-10.022,2.584,-2.161) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1371,-1.6716,-0.9448) mvmt=(0.0597,-0.1072,-0.4092) collide=False insertType=0 objState=0x303 winterp=0.4026 return=-1 +[push-back] site=adjust_sphere in=(-0.1371,-1.6716,-0.9448) out=(-0.1371,-1.6716,-0.6428) delta=(0.0000,0.0000,0.3020) deltaMag=0.3020 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.4026->0.0000 dpPos=0.2665 dpMove=-0.2135 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.9621,2.4764,-2.2680) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.462,9.024,91.752) lpos=(-9.962,2.476,-2.268) lprev=(-10.022,2.584,-2.161) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1371,-1.6716,-0.6428) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8379,-1.9116,-0.7478) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9621,2.4764,-2.2480) mvmt=(0.0597,-0.1072,-0.1072) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.9077,2.3787,-2.3658) mvmt=(0.0545,-0.0978,-0.0978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.408,9.121,91.654) lpos=(-9.908,2.379,-2.366) lprev=(-9.962,2.476,-2.268) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0827,-1.7694,-0.7406) mvmt=(0.0545,-0.0978,-0.0978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8923,-2.0094,-0.8456) mvmt=(0.0545,-0.0978,-0.0978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9077,2.3787,-2.3458) mvmt=(0.0545,-0.0978,-0.0978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9077,2.3787,-3.1158) mvmt=(0.0545,-0.0978,-0.8478) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.9077,2.3787,-3.1158) out=(-9.9077,2.3787,-2.5700) delta=(0.0000,0.0000,0.5458) deltaMag=0.5458 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.2723 dpPos=-0.0658 dpMove=-0.7500 iDist=0.7277 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.408,9.121,90.904) lpos=(-9.908,2.379,-3.116) lprev=(-9.962,2.476,-2.268) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.9077,2.3787,-2.5700) mvmt=(0.0545,-0.0978,-0.3020) collide=False insertType=0 objState=0x303 winterp=0.2723 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.408,9.121,91.450) lpos=(-9.908,2.379,-2.570) lprev=(-9.962,2.476,-2.268) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0827,-1.7694,-0.9448) mvmt=(0.0545,-0.0978,-0.3020) collide=False insertType=0 objState=0x303 winterp=0.2723 return=-1 +[push-back] site=adjust_sphere in=(-0.0827,-1.7694,-0.9448) out=(-0.0827,-1.7694,-0.7406) delta=(0.0000,0.0000,0.2042) deltaMag=0.2042 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.2723->-0.0000 dpPos=0.3356 dpMove=-0.1444 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.9077,2.3787,-2.3658) mvmt=(0.0545,-0.0978,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.408,9.121,91.654) lpos=(-9.908,2.379,-2.366) lprev=(-9.962,2.476,-2.268) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0827,-1.7694,-0.7406) mvmt=(0.0545,-0.0978,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8923,-2.0094,-0.8456) mvmt=(0.0545,-0.0978,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9077,2.3787,-2.3458) mvmt=(0.0545,-0.0978,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.8470,2.2698,-2.4747) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.347,9.230,91.545) lpos=(-9.847,2.270,-2.475) lprev=(-9.908,2.379,-2.366) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0220,-1.8783,-0.8495) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9530,-2.1183,-0.9545) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8470,2.2698,-2.4547) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8470,2.2698,-3.2247) mvmt=(0.0607,-0.1089,-0.8589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.8470,2.2698,-3.2247) out=(-9.8470,2.2698,-2.5700) delta=(0.0000,0.0000,0.6547) deltaMag=0.6547 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1271 dpPos=-0.1747 dpMove=-0.7500 iDist=0.8729 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.347,9.230,90.795) lpos=(-9.847,2.270,-3.225) lprev=(-9.908,2.379,-2.366) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.8470,2.2698,-2.5700) mvmt=(0.0607,-0.1089,-0.2042) collide=False insertType=0 objState=0x303 winterp=0.1271 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.347,9.230,91.450) lpos=(-9.847,2.270,-2.570) lprev=(-9.908,2.379,-2.366) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0220,-1.8783,-0.9448) mvmt=(0.0607,-0.1089,-0.2042) collide=False insertType=0 objState=0x303 winterp=0.1271 return=-1 +[push-back] site=adjust_sphere in=(-0.0220,-1.8783,-0.9448) out=(-0.0220,-1.8783,-0.8495) delta=(0.0000,0.0000,0.0953) deltaMag=0.0953 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.1271->0.0000 dpPos=0.4126 dpMove=-0.0674 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.8470,2.2698,-2.4747) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.347,9.230,91.545) lpos=(-9.847,2.270,-2.475) lprev=(-9.908,2.379,-2.366) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0220,-1.8783,-0.8495) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9530,-2.1183,-0.9545) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8470,2.2698,-2.4547) mvmt=(0.0607,-0.1089,-0.1089) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.9539,2.4616,-2.2828) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.454,9.038,91.737) lpos=(-9.954,2.462,-2.283) lprev=(-9.847,2.270,-2.475) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1289,-1.6864,-0.6576) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8461,-1.9264,-0.7626) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9539,2.4616,-2.2628) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9539,2.4616,-3.0328) mvmt=(-0.1069,0.1919,-0.5581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.9539,2.4616,-3.0328) out=(-9.9539,2.4616,-2.5700) delta=(0.0000,0.0000,0.4628) deltaMag=0.4628 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.3830 dpPos=0.0172 dpMove=-0.7500 iDist=0.6170 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.454,9.038,90.987) lpos=(-9.954,2.462,-3.033) lprev=(-9.847,2.270,-2.475) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.9539,2.4616,-2.5700) mvmt=(-0.1069,0.1919,-0.0953) collide=False insertType=0 objState=0x303 winterp=0.3830 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.454,9.038,91.450) lpos=(-9.954,2.462,-2.570) lprev=(-9.847,2.270,-2.475) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1289,-1.6864,-0.9448) mvmt=(-0.1069,0.1919,-0.0953) collide=False insertType=0 objState=0x303 winterp=0.3830 return=-1 +[push-back] site=adjust_sphere in=(-0.1289,-1.6864,-0.9448) out=(-0.1289,-1.6864,-0.6576) delta=(0.0000,0.0000,0.2872) deltaMag=0.2872 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.3830->-0.0000 dpPos=0.2769 dpMove=-0.2031 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.9539,2.4616,-2.2828) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.454,9.038,91.737) lpos=(-9.954,2.462,-2.283) lprev=(-9.847,2.270,-2.475) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1289,-1.6864,-0.6576) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8461,-1.9264,-0.7626) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9539,2.4616,-2.2628) mvmt=(-0.1069,0.1919,0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0643,2.6598,-2.0846) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.564,8.840,91.935) lpos=(-10.064,2.660,-2.085) lprev=(-9.954,2.462,-2.283) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2393,-1.4882,-0.4594) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7357,-1.7282,-0.5644) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0643,2.6598,-2.0646) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0643,2.6598,-2.8346) mvmt=(-0.1104,0.1982,-0.5518) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.0643,2.6598,-2.8346) out=(-10.0643,2.6598,-2.5700) delta=(0.0000,0.0000,0.2646) deltaMag=0.2646 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6472 dpPos=0.2154 dpMove=-0.7500 iDist=0.3528 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.564,8.840,91.185) lpos=(-10.064,2.660,-2.835) lprev=(-9.954,2.462,-2.283) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.0643,2.6598,-2.5700) mvmt=(-0.1104,0.1982,-0.2872) collide=False insertType=0 objState=0x303 winterp=0.6472 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.564,8.840,91.450) lpos=(-10.064,2.660,-2.570) lprev=(-9.954,2.462,-2.283) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2393,-1.4882,-0.9448) mvmt=(-0.1104,0.1982,-0.2872) collide=False insertType=0 objState=0x303 winterp=0.6472 return=-1 +[push-back] site=adjust_sphere in=(-0.2393,-1.4882,-0.9448) out=(-0.2393,-1.4882,-0.4594) delta=(0.0000,0.0000,0.4854) deltaMag=0.4854 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.6472->0.0000 dpPos=0.1368 dpMove=-0.3432 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=(-10.0643,2.6598,-2.0846) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.564,8.840,91.935) lpos=(-10.064,2.660,-2.085) lprev=(-9.954,2.462,-2.283) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2393,-1.4882,-0.4594) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7357,-1.7282,-0.5644) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0643,2.6598,-2.0646) mvmt=(-0.1104,0.1982,0.1982) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1840,2.8745,-1.8699) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,8.625,92.150) lpos=(-10.184,2.875,-1.870) lprev=(-10.064,2.660,-2.085) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3590,-1.2735,-0.2447) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6160,-1.5135,-0.3497) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1840,2.8745,-1.8499) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1840,2.8745,-2.6199) mvmt=(-0.1196,0.2147,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1840,2.8745,-2.6199) out=(-10.1840,2.8745,-2.5700) delta=(0.0000,0.0000,0.0499) deltaMag=0.0499 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9335 dpPos=0.4301 dpMove=-0.7500 iDist=0.0665 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.684,8.625,91.400) lpos=(-10.184,2.875,-2.620) lprev=(-10.064,2.660,-2.085) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1840,2.8745,-2.5700) mvmt=(-0.1196,0.2147,-0.4854) collide=False insertType=0 objState=0x303 winterp=0.9335 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,8.625,91.450) lpos=(-10.184,2.875,-2.570) lprev=(-10.064,2.660,-2.085) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3590,-1.2735,-0.9448) mvmt=(-0.1196,0.2147,-0.4854) collide=False insertType=0 objState=0x303 winterp=0.9335 return=-1 +[push-back] site=adjust_sphere in=(-0.3590,-1.2735,-0.9448) out=(-0.3590,-1.2735,-0.2447) delta=(0.0000,0.0000,0.7001) deltaMag=0.7001 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.9335->-0.0000 dpPos=-0.0150 dpMove=-0.4950 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=(-10.1840,2.8745,-1.8699) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,8.625,92.150) lpos=(-10.184,2.875,-1.870) lprev=(-10.064,2.660,-2.085) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3590,-1.2735,-0.2447) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6160,-1.5135,-0.3497) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1840,2.8745,-1.8499) mvmt=(-0.1196,0.2147,0.2147) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2909,3.0665,-1.6779) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.791,8.434,92.342) lpos=(-10.291,3.066,-1.678) lprev=(-10.184,2.875,-1.870) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4659,-1.0816,-0.0527) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5091,-1.3216,-0.1577) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5091,-3.5328,-1.5077) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2909,3.0665,-1.6579) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2909,3.0665,-2.4279) mvmt=(-0.1070,0.1920,-0.5580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.791,8.434,91.592) lpos=(-10.291,3.066,-2.428) lprev=(-10.184,2.875,-1.870) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4659,-1.0816,-0.8027) mvmt=(-0.1070,0.1920,-0.5580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4659,-1.0816,-0.8027) out=(-0.4659,-1.0816,-0.0527) 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.2909,3.0665,-1.6779) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.791,8.434,92.342) lpos=(-10.291,3.066,-1.678) lprev=(-10.184,2.875,-1.870) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4659,-1.0816,-0.0527) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5091,-1.3216,-0.1577) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5091,-3.5328,-1.5077) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2909,3.0665,-1.6579) mvmt=(-0.1070,0.1920,0.1920) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3988,3.2600,-1.4845) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,8.240,92.536) lpos=(-10.399,3.260,-1.484) lprev=(-10.291,3.066,-1.678) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5738,-0.8881,0.1407) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4012,-1.1281,0.0357) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4012,-3.3393,-1.3143) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3988,3.2600,-1.4645) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3988,3.2600,-2.2345) mvmt=(-0.1078,0.1935,-0.5565) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,8.240,91.786) lpos=(-10.399,3.260,-2.234) lprev=(-10.291,3.066,-1.678) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5738,-0.8881,-0.6093) mvmt=(-0.1078,0.1935,-0.5565) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5738,-0.8881,-0.6093) out=(-0.5738,-0.8881,0.1407) 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.3988,3.2600,-1.4845) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,8.240,92.536) lpos=(-10.399,3.260,-1.484) lprev=(-10.291,3.066,-1.678) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5738,-0.8881,0.1407) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4012,-1.1281,0.0357) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4012,-3.3393,-1.3143) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3988,3.2600,-1.4645) mvmt=(-0.1078,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5191,3.4759,-1.2685) mvmt=(-0.1203,0.2159,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.019,8.024,92.751) lpos=(-10.519,3.476,-1.269) lprev=(-10.399,3.260,-1.484) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6941,-0.6721,0.3567) mvmt=(-0.1203,0.2159,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-0.9121,0.2517) mvmt=(-0.1203,0.2159,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-3.1234,-1.0983) mvmt=(-0.1203,0.2159,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2191,-3.2695,1.7560) mvmt=(-0.2458,-0.0260,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5191,3.4759,-1.2485) mvmt=(-0.1203,0.2159,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5191,3.4759,-2.0185) mvmt=(-0.1203,0.2159,-0.5341) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.019,8.024,92.001) lpos=(-10.519,3.476,-2.019) lprev=(-10.399,3.260,-1.484) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6941,-0.6721,-0.3933) mvmt=(-0.1203,0.2159,-0.5341) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-0.9121,-0.4983) mvmt=(-0.1203,0.2159,-0.5341) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2809,-0.9121,-0.4983) out=(0.2809,-0.9121,-0.1081) delta=(0.0000,0.0000,0.3902) deltaMag=0.3902 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4798 dpPos=0.2088 dpMove=-0.5213 iDist=0.5202 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.5191,3.4759,-1.6283) mvmt=(-0.1203,0.2159,-0.1439) collide=False insertType=0 objState=0x303 winterp=0.4798 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.019,8.024,92.392) lpos=(-10.519,3.476,-1.628) lprev=(-10.399,3.260,-1.484) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6941,-0.6721,-0.0031) mvmt=(-0.1203,0.2159,-0.1439) collide=False insertType=0 objState=0x303 winterp=0.4798 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-0.9121,-0.1081) mvmt=(-0.1203,0.2159,-0.1439) collide=False insertType=0 objState=0x303 winterp=0.4798 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-3.1234,-1.4581) mvmt=(-0.1203,0.2159,-0.1439) collide=False insertType=0 objState=0x303 winterp=0.4798 return=-1 +[push-back-disp] site=dispatch center=(-10.5191,3.4759,-1.6083) mvmt=(-0.1203,0.2159,-0.1439) collide=False insertType=0 objState=0x303 winterp=0.4798 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6383,3.6825,-1.4146) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,7.817,92.605) lpos=(-10.638,3.683,-1.415) lprev=(-10.519,3.476,-1.628) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8133,-0.4655,0.2106) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1617,-0.7055,0.1056) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1617,-2.9168,-1.2444) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9823,-3.2981,1.6099) mvmt=(-0.2368,-0.0286,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6383,3.6825,-1.3946) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6383,3.6825,-2.1646) mvmt=(-0.1192,0.2066,-0.5363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,7.817,91.855) lpos=(-10.638,3.683,-2.165) lprev=(-10.519,3.476,-1.628) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8133,-0.4655,-0.5394) mvmt=(-0.1192,0.2066,-0.5363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1617,-0.7055,-0.6444) mvmt=(-0.1192,0.2066,-0.5363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1617,-0.7055,-0.6444) out=(0.1617,-0.7055,0.1056) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6383,3.6825,-1.4146) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,7.817,92.605) lpos=(-10.638,3.683,-1.415) lprev=(-10.519,3.476,-1.628) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8133,-0.4655,0.2106) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1617,-0.7055,0.1056) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1617,-2.9168,-1.2444) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9823,-3.2981,1.6099) mvmt=(-0.2368,-0.0286,0.2137) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6383,3.6825,-1.3946) mvmt=(-0.1192,0.2066,0.2137) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7568,3.8880,-1.2020) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.612,92.818) lpos=(-10.757,3.888,-1.202) lprev=(-10.638,3.683,-1.415) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9318,-0.2600,0.4232) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0432,-0.5000,0.3182) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0432,-2.7113,-1.0318) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7468,-3.3265,1.8225) mvmt=(-0.2355,-0.0284,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7568,3.8880,-1.1820) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7568,3.8880,-1.9520) mvmt=(-0.1185,0.2055,-0.5374) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.612,92.068) lpos=(-10.757,3.888,-1.952) lprev=(-10.638,3.683,-1.415) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9318,-0.2600,-0.3268) mvmt=(-0.1185,0.2055,-0.5374) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0432,-0.5000,-0.4318) mvmt=(-0.1185,0.2055,-0.5374) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0432,-0.5000,-0.4318) out=(0.0432,-0.5000,0.3182) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7568,3.8880,-1.2020) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.257,7.612,92.818) lpos=(-10.757,3.888,-1.202) lprev=(-10.638,3.683,-1.415) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9318,-0.2600,0.4232) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0432,-0.5000,0.3182) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0432,-2.7113,-1.0318) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7468,-3.3265,1.8225) mvmt=(-0.2355,-0.0284,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7568,3.8880,-1.1820) mvmt=(-0.1185,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8635,4.0731,-1.0106) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.427,93.009) lpos=(-10.864,4.073,-1.011) lprev=(-10.757,3.888,-1.202) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0385,-0.0750,0.6146) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0635,-0.3150,0.5096) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0635,-2.5262,-0.8404) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8635,4.0731,-0.9906) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8635,4.0731,-1.7606) mvmt=(-0.1067,0.1851,-0.5586) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.427,92.259) lpos=(-10.864,4.073,-1.761) lprev=(-10.757,3.888,-1.202) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0385,-0.0750,-0.1354) mvmt=(-0.1067,0.1851,-0.5586) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0635,-0.3150,-0.2404) mvmt=(-0.1067,0.1851,-0.5586) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0635,-0.3150,-0.2404) out=(-0.0635,-0.3150,0.5096) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8635,4.0731,-1.0106) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.427,93.009) lpos=(-10.864,4.073,-1.011) lprev=(-10.757,3.888,-1.202) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0385,-0.0750,0.6146) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0635,-0.3150,0.5096) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0635,-2.5262,-0.8404) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8635,4.0731,-0.9906) mvmt=(-0.1067,0.1851,0.1914) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9818,4.2781,-0.7984) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.482,7.222,93.222) lpos=(-10.982,4.278,-0.798) lprev=(-10.864,4.073,-1.011) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1568,0.1301,0.8268) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1818,-0.1099,0.7218) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1818,-2.3212,-0.6283) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9818,4.2781,-0.7785) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9818,4.2781,-1.5484) mvmt=(-0.1183,0.2051,-0.5379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.482,7.222,92.472) lpos=(-10.982,4.278,-1.548) lprev=(-10.864,4.073,-1.011) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1568,0.1301,0.0768) mvmt=(-0.1183,0.2051,-0.5379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1818,-0.1099,-0.0282) mvmt=(-0.1183,0.2051,-0.5379) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1818,-0.1099,-0.0282) out=(-0.1818,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9818,4.2781,-0.7984) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.482,7.222,93.222) lpos=(-10.982,4.278,-0.798) lprev=(-10.864,4.073,-1.011) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1568,0.1301,0.8268) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1818,-0.1099,0.7218) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1818,-2.3212,-0.6283) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9818,4.2781,-0.7785) mvmt=(-0.1183,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0996,4.4824,-0.5872) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.018,93.433) lpos=(-11.100,4.482,-0.587) lprev=(-10.982,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4824,-0.5872) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2746,0.3343,1.0380) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,0.0943,0.9330) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-2.1169,-0.4170) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.4824,-0.5672) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.4824,-0.5872) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.018,93.433) lpos=(-11.100,4.482,-0.587) lprev=(-10.982,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4824,-0.5872) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2746,0.3343,1.0380) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,0.0943,0.9330) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-2.1169,-0.4170) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.4824,-0.5672) mvmt=(-0.1178,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.2781,-0.7984) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.222,93.222) lpos=(-11.100,4.278,-0.798) lprev=(-10.982,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2746,0.1301,0.8268) mvmt=(-0.1178,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-0.1099,0.7218) mvmt=(-0.1178,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-2.3212,-0.6283) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.2781,-0.7785) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.2781,-1.5484) mvmt=(-0.1178,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.222,92.472) lpos=(-11.100,4.278,-1.548) lprev=(-10.982,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2746,0.1301,0.0768) mvmt=(-0.1178,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-0.1099,-0.0282) mvmt=(-0.1178,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2996,-0.1099,-0.0282) out=(-0.2996,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0996,4.2781,-0.7984) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.222,93.222) lpos=(-11.100,4.278,-0.798) lprev=(-10.982,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2746,0.1301,0.8268) mvmt=(-0.1178,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-0.1099,0.7218) mvmt=(-0.1178,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-2.3212,-0.6283) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.2781,-0.7785) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1949,4.4882,-0.5812) mvmt=(-0.0953,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1949,4.4882,-0.5812) mvmt=(-0.0953,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.695,7.012,93.439) lpos=(-11.195,4.488,-0.581) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1949,4.4882,-0.5812) mvmt=(-0.0953,0.2100,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=(-1.3699,0.3401,1.0440) mvmt=(-0.0953,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3949,0.1001,0.9390) mvmt=(-0.0953,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3949,-2.1112,-0.4110) mvmt=(-0.0953,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1949,4.4882,-0.5612) mvmt=(-0.0953,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.695,7.012,93.439) lpos=(-11.195,4.488,-0.581) lprev=(-11.100,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4882,-0.5812) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.012,93.439) lpos=(-11.100,4.488,-0.581) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4882,-0.5812) mvmt=(0.0000,0.2100,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=(-1.2746,0.3401,1.0440) 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.2996,0.1001,0.9390) 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.2996,-2.1112,-0.4110) 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.0996,4.4882,-0.5612) 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.0996,4.4882,-0.5812) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.012,93.439) lpos=(-11.100,4.488,-0.581) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4882,-0.5812) mvmt=(0.0000,0.2100,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=(-1.2746,0.3401,1.0440) 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.2996,0.1001,0.9390) 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.2996,-2.1112,-0.4110) 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.0996,4.4882,-0.5612) mvmt=(0.0000,0.2100,0.2173) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1561,4.4917,-0.5775) mvmt=(-0.0565,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1561,4.4917,-0.5775) mvmt=(-0.0565,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.656,7.008,93.442) lpos=(-11.156,4.492,-0.578) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1561,4.4917,-0.5775) mvmt=(-0.0565,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3311,0.3436,1.0477) mvmt=(-0.0565,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3561,0.1036,0.9427) mvmt=(-0.0565,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3561,-2.1076,-0.4073) mvmt=(-0.0565,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1561,4.4917,-0.5575) mvmt=(-0.0565,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.656,7.008,93.442) lpos=(-11.156,4.492,-0.578) lprev=(-11.100,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4917,-0.5775) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.008,93.442) lpos=(-11.100,4.492,-0.578) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4917,-0.5775) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2746,0.3436,1.0477) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,0.1036,0.9427) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-2.1076,-0.4073) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.4917,-0.5575) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.4917,-0.5775) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.008,93.442) lpos=(-11.100,4.492,-0.578) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0996,4.4917,-0.5775) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2746,0.3436,1.0477) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,0.1036,0.9427) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2996,-2.1076,-0.4073) mvmt=(0.0000,0.2135,0.2209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0996,4.4917,-0.5575) mvmt=(0.0000,0.2135,0.2209) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1174,4.4874,-0.5820) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.013,93.438) lpos=(-11.117,4.487,-0.582) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1174,4.4874,-0.5820) mvmt=(-0.0177,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.2924,0.3393,1.0432) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3174,0.0993,0.9382) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3174,-2.1120,-0.4118) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1174,4.4874,-0.5620) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1174,4.4874,-0.5820) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.013,93.438) lpos=(-11.117,4.487,-0.582) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1174,4.4874,-0.5820) mvmt=(-0.0177,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.2924,0.3393,1.0432) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3174,0.0993,0.9382) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3174,-2.1120,-0.4118) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1174,4.4874,-0.5620) mvmt=(-0.0177,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1174,4.2781,-0.7984) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.222,93.222) lpos=(-11.117,4.278,-0.798) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2924,0.1301,0.8268) 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.3174,-0.1099,0.7218) 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.3174,-2.3212,-0.6283) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1174,4.2781,-0.7785) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1174,4.2781,-1.5484) mvmt=(-0.0177,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.222,92.472) lpos=(-11.117,4.278,-1.548) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2924,0.1301,0.0768) 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.3174,-0.1099,-0.0282) 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.3174,-0.1099,-0.0282) out=(-0.3174,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.1174,4.2781,-0.7984) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.222,93.222) lpos=(-11.117,4.278,-0.798) lprev=(-11.100,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2924,0.1301,0.8268) 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.3174,-0.1099,0.7218) 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.3174,-2.3212,-0.6283) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1174,4.2781,-0.7785) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0976,4.4879,-0.5815) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.012,93.439) lpos=(-11.098,4.488,-0.581) lprev=(-11.117,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0976,4.4879,-0.5815) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2726,0.3399,1.0437) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,0.0999,0.9388) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,-2.1114,-0.4113) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0976,4.4879,-0.5615) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0976,4.4879,-0.5815) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.012,93.439) lpos=(-11.098,4.488,-0.581) lprev=(-11.117,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0976,4.4879,-0.5815) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2726,0.3399,1.0437) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,0.0999,0.9388) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,-2.1114,-0.4113) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0976,4.4879,-0.5615) mvmt=(0.0198,0.2098,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0976,4.2781,-0.7984) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.222,93.222) lpos=(-11.098,4.278,-0.798) lprev=(-11.117,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2726,0.1301,0.8268) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,-0.1099,0.7218) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,-2.3212,-0.6283) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0976,4.2781,-0.7785) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0976,4.2781,-1.5484) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.222,92.472) lpos=(-11.098,4.278,-1.548) lprev=(-11.117,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2726,0.1301,0.0768) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,-0.1099,-0.0282) mvmt=(0.0198,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2976,-0.1099,-0.0282) out=(-0.2976,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0976,4.2781,-0.7984) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.222,93.222) lpos=(-11.098,4.278,-0.798) lprev=(-11.117,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2726,0.1301,0.8268) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,-0.1099,0.7218) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2976,-2.3212,-0.6283) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0976,4.2781,-0.7785) mvmt=(0.0198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0424,4.4819,-0.5876) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.018,93.432) lpos=(-11.042,4.482,-0.588) lprev=(-11.098,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0424,4.4819,-0.5876) mvmt=(0.0552,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.2174,0.3339,1.0376) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,0.0939,0.9326) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,-2.1174,-0.4174) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0424,4.4819,-0.5676) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0424,4.4819,-0.5876) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.018,93.432) lpos=(-11.042,4.482,-0.588) lprev=(-11.098,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0424,4.4819,-0.5876) mvmt=(0.0552,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.2174,0.3339,1.0376) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,0.0939,0.9326) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,-2.1174,-0.4174) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0424,4.4819,-0.5676) mvmt=(0.0552,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0424,4.2781,-0.7984) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.222,93.222) lpos=(-11.042,4.278,-0.798) lprev=(-11.098,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2174,0.1301,0.8268) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,-0.1099,0.7218) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,-2.3212,-0.6283) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0424,4.2781,-0.7785) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0424,4.2781,-1.5484) mvmt=(0.0552,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.222,92.472) lpos=(-11.042,4.278,-1.548) lprev=(-11.098,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2174,0.1301,0.0768) mvmt=(0.0552,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,-0.1099,-0.0282) mvmt=(0.0552,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2424,-0.1099,-0.0282) out=(-0.2424,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0424,4.2781,-0.7984) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.222,93.222) lpos=(-11.042,4.278,-0.798) lprev=(-11.098,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2174,0.1301,0.8268) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,-0.1099,0.7218) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2424,-2.3212,-0.6283) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0424,4.2781,-0.7785) mvmt=(0.0552,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9551,4.4736,-0.5963) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.455,7.026,93.424) lpos=(-10.955,4.474,-0.596) lprev=(-11.042,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9551,4.4736,-0.5963) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1301,0.3255,1.0289) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1551,0.0855,0.9239) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1551,-2.1257,-0.4261) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9551,4.4736,-0.5763) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9551,4.4736,-0.5963) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.455,7.026,93.424) lpos=(-10.955,4.474,-0.596) lprev=(-11.042,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9551,4.4736,-0.5963) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1301,0.3255,1.0289) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1551,0.0855,0.9239) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1551,-2.1257,-0.4261) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9551,4.4736,-0.5763) mvmt=(0.0873,0.1954,0.2022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9551,4.2781,-0.7984) mvmt=(0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.455,7.222,93.222) lpos=(-10.955,4.278,-0.798) lprev=(-11.042,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1301,0.1301,0.8268) 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.1551,-0.1099,0.7218) 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.1551,-2.3212,-0.6283) 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.9551,4.2781,-0.7785) 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.9551,4.2781,-1.5484) mvmt=(0.0873,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.455,7.222,92.472) lpos=(-10.955,4.278,-1.548) lprev=(-11.042,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1301,0.1301,0.0768) 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.1551,-0.1099,-0.0282) 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.1551,-0.1099,-0.0282) out=(-0.1551,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9551,4.2781,-0.7984) mvmt=(0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.455,7.222,93.222) lpos=(-10.955,4.278,-0.798) lprev=(-11.042,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1301,0.1301,0.8268) 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.1551,-0.1099,0.7218) 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.1551,-2.3212,-0.6283) 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.9551,4.2781,-0.7785) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8336,4.4834,-0.5861) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,7.017,93.434) lpos=(-10.834,4.483,-0.586) lprev=(-10.955,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8336,4.4834,-0.5861) mvmt=(0.1215,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.0086,0.3353,1.0391) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,0.0953,0.9341) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,-2.1159,-0.4159) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8336,4.4834,-0.5661) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8336,4.4834,-0.5861) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,7.017,93.434) lpos=(-10.834,4.483,-0.586) lprev=(-10.955,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8336,4.4834,-0.5861) mvmt=(0.1215,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.0086,0.3353,1.0391) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,0.0953,0.9341) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,-2.1159,-0.4159) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8336,4.4834,-0.5661) mvmt=(0.1215,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8336,4.2781,-0.7984) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,7.222,93.222) lpos=(-10.834,4.278,-0.798) lprev=(-10.955,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0086,0.1301,0.8268) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,-0.1099,0.7218) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,-2.3212,-0.6283) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8336,4.2781,-0.7785) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8336,4.2781,-1.5484) mvmt=(0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,7.222,92.472) lpos=(-10.834,4.278,-1.548) lprev=(-10.955,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0086,0.1301,0.0768) mvmt=(0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,-0.1099,-0.0282) mvmt=(0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0336,-0.1099,-0.0282) out=(-0.0336,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8336,4.2781,-0.7984) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,7.222,93.222) lpos=(-10.834,4.278,-0.798) lprev=(-10.955,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0086,0.1301,0.8268) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,-0.1099,0.7218) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0336,-2.3212,-0.6283) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8336,4.2781,-0.7785) mvmt=(0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7234,4.4642,-0.6059) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.223,7.036,93.414) lpos=(-10.723,4.464,-0.606) lprev=(-10.834,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7234,4.4642,-0.6059) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8984,0.3162,1.0193) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,0.0762,0.9143) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,-2.1351,-0.4357) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7234,4.4642,-0.5859) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7234,4.4642,-0.6059) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.223,7.036,93.414) lpos=(-10.723,4.464,-0.606) lprev=(-10.834,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7234,4.4642,-0.6059) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8984,0.3162,1.0193) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,0.0762,0.9143) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,-2.1351,-0.4357) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7234,4.4642,-0.5859) mvmt=(0.1102,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7234,4.2781,-0.7984) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.223,7.222,93.222) lpos=(-10.723,4.278,-0.798) lprev=(-10.834,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8984,0.1301,0.8268) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,-0.1099,0.7218) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,-2.3212,-0.6283) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7234,4.2781,-0.7785) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7234,4.2781,-1.5484) mvmt=(0.1102,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.223,7.222,92.472) lpos=(-10.723,4.278,-1.548) lprev=(-10.834,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8984,0.1301,0.0768) mvmt=(0.1102,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,-0.1099,-0.0282) mvmt=(0.1102,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0766,-0.1099,-0.0282) out=(0.0766,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7234,4.2781,-0.7984) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.223,7.222,93.222) lpos=(-10.723,4.278,-0.798) lprev=(-10.834,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8984,0.1301,0.8268) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,-0.1099,0.7218) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0766,-2.3212,-0.6283) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7234,4.2781,-0.7785) mvmt=(0.1102,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6039,4.4799,-0.5898) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.020,93.430) lpos=(-10.604,4.480,-0.590) lprev=(-10.723,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6039,4.4799,-0.5898) mvmt=(0.1195,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=(-0.7789,0.3318,1.0354) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,0.0918,0.9305) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,-2.1194,-0.4196) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6039,4.4799,-0.5698) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6039,4.4799,-0.5898) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.020,93.430) lpos=(-10.604,4.480,-0.590) lprev=(-10.723,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6039,4.4799,-0.5898) mvmt=(0.1195,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=(-0.7789,0.3318,1.0354) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,0.0918,0.9305) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,-2.1194,-0.4196) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6039,4.4799,-0.5698) mvmt=(0.1195,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6039,4.2781,-0.7984) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.222,93.222) lpos=(-10.604,4.278,-0.798) lprev=(-10.723,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7789,0.1301,0.8268) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,-0.1099,0.7218) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,-2.3212,-0.6283) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6039,4.2781,-0.7785) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6039,4.2781,-1.5484) mvmt=(0.1195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.222,92.472) lpos=(-10.604,4.278,-1.548) lprev=(-10.723,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7789,0.1301,0.0768) mvmt=(0.1195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,-0.1099,-0.0282) mvmt=(0.1195,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1961,-0.1099,-0.0282) out=(0.1961,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6039,4.2781,-0.7984) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.222,93.222) lpos=(-10.604,4.278,-0.798) lprev=(-10.723,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7789,0.1301,0.8268) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,-0.1099,0.7218) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1961,-2.3212,-0.6283) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6039,4.2781,-0.7785) mvmt=(0.1195,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4863,4.4768,-0.5930) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.986,7.023,93.427) lpos=(-10.486,4.477,-0.593) lprev=(-10.604,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4863,4.4768,-0.5930) mvmt=(0.1176,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.6613,0.3287,1.0322) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,0.0887,0.9272) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,-2.1225,-0.4228) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3113,-2.8467,2.4315) mvmt=(-0.1366,0.1861,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4863,4.4768,-0.5730) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4863,4.4768,-0.5930) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.986,7.023,93.427) lpos=(-10.486,4.477,-0.593) lprev=(-10.604,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4863,4.4768,-0.5930) mvmt=(0.1176,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.6613,0.3287,1.0322) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,0.0887,0.9272) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,-2.1225,-0.4228) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3113,-2.8467,2.4315) mvmt=(-0.1366,0.1861,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4863,4.4768,-0.5730) mvmt=(0.1176,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4863,4.2781,-0.7984) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.986,7.222,93.222) lpos=(-10.486,4.278,-0.798) lprev=(-10.604,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6613,0.1301,0.8268) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,-0.1099,0.7218) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,-2.3212,-0.6283) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4863,4.2781,-0.7785) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4863,4.2781,-1.5484) mvmt=(0.1176,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.986,7.222,92.472) lpos=(-10.486,4.278,-1.548) lprev=(-10.604,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6613,0.1301,0.0768) mvmt=(0.1176,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,-0.1099,-0.0282) mvmt=(0.1176,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3137,-0.1099,-0.0282) out=(0.3137,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4863,4.2781,-0.7984) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.986,7.222,93.222) lpos=(-10.486,4.278,-0.798) lprev=(-10.604,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6613,0.1301,0.8268) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,-0.1099,0.7218) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3137,-2.3212,-0.6283) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4863,4.2781,-0.7785) mvmt=(0.1176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4187,4.3923,-0.6803) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.108,93.340) lpos=(-10.419,4.392,-0.680) lprev=(-10.486,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4187,4.3923,-0.6803) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.2443,0.9449) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.0043,0.8399) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.2070,-0.5101) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4155,-2.8176,2.3442) mvmt=(-0.0785,0.1070,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.3923,-0.6603) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.3923,-0.6803) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.108,93.340) lpos=(-10.419,4.392,-0.680) lprev=(-10.486,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4187,4.3923,-0.6803) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.2443,0.9449) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.0043,0.8399) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.2070,-0.5101) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4155,-2.8176,2.3442) mvmt=(-0.0785,0.1070,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.3923,-0.6603) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.2781,-0.7984) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.222,93.222) lpos=(-10.419,4.278,-0.798) lprev=(-10.486,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5937,0.1301,0.8268) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-0.1099,0.7218) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.3212,-0.6283) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.2781,-0.7785) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.2781,-1.5484) mvmt=(0.0676,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.222,92.472) lpos=(-10.419,4.278,-1.548) lprev=(-10.486,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5937,0.1301,0.0768) mvmt=(0.0676,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-0.1099,-0.0282) mvmt=(0.0676,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3813,-0.1099,-0.0282) out=(0.3813,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4187,4.2781,-0.7984) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.222,93.222) lpos=(-10.419,4.278,-0.798) lprev=(-10.486,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5937,0.1301,0.8268) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-0.1099,0.7218) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.3212,-0.6283) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.2781,-0.7785) mvmt=(0.0676,0.0000,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=(-10.3511,4.3923,-0.6803) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3511,4.3923,-0.6803) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.108,93.340) lpos=(-10.351,4.392,-0.680) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3511,4.3923,-0.6803) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5261,0.2443,0.9449) mvmt=(0.0676,0.1142,0.1181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5261,0.2443,0.9449) out=(-0.5261,0.2443,1.2731) delta=(0.0000,0.0000,0.3282) deltaMag=0.3282 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4530 dpPos=0.2479 dpMove=-0.4243 iDist=0.5470 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.3511,4.3923,-0.3521) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.108,93.668) lpos=(-10.351,4.392,-0.352) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3511,4.3923,-0.3521) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 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.3511,4.3923,-0.3521) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5261,0.2443,1.2731) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[push-back-disp] site=dispatch center=(0.4489,0.0043,1.1681) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[push-back-disp] site=dispatch center=(0.4489,-2.2070,-0.1819) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[push-back-disp] site=dispatch center=(0.4420,-2.7554,2.6724) mvmt=(-0.0785,0.1070,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[push-back-disp] site=dispatch center=(-10.3511,4.3923,-0.3321) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[push-back-disp] site=dispatch center=(-10.3511,4.3923,-0.3521) mvmt=(0.0676,0.1142,0.4464) collide=False insertType=1 objState=0x303 winterp=0.4530 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.108,93.668) lpos=(-10.351,4.392,-0.352) lprev=(-10.419,4.278,-0.798) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.108,93.340) lpos=(-10.351,4.392,-0.680) lprev=(-10.419,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3511,4.2781,-0.7984) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.222,93.222) lpos=(-10.351,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5261,0.1301,0.8268) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4530 return=-1 +[push-back-disp] site=dispatch center=(-10.3511,4.2781,-0.7984) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.222,93.222) lpos=(-10.351,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5261,0.1301,0.8268) mvmt=(0.0676,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5261,0.1301,0.8268) out=(-0.5261,0.1301,1.1589) delta=(0.0000,0.0000,0.3322) deltaMag=0.3322 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4464 dpPos=0.2451 dpMove=-0.4243 iDist=0.5536 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3511,4.2781,-0.4663) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.222,93.554) lpos=(-10.351,4.278,-0.466) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3511,4.2781,-0.4663) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 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.3511,4.2781,-0.4663) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5261,0.1301,1.1589) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.4489,-0.1099,1.0539) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.4489,-2.3212,-0.2961) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5471,-2.8002,2.5582) mvmt=(0.0265,0.0622,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.3511,4.2781,-0.4463) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.3511,4.2781,-0.4663) mvmt=(0.0676,0.0000,0.3322) collide=False insertType=1 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.851,7.222,93.554) lpos=(-10.351,4.278,-0.466) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4187,4.4876,-0.4557) mvmt=(0.0000,0.2094,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4876,-0.4557) mvmt=(0.0000,0.2094,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.012,93.564) lpos=(-10.419,4.488,-0.456) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4187,4.4876,-0.4557) mvmt=(0.0000,0.2094,0.3428) 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.4187,4.4876,-0.4557) mvmt=(0.0000,0.2094,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.3395,1.1695) mvmt=(0.0000,0.2094,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.0995,1.0645) mvmt=(0.0000,0.2094,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.1117,-0.2855) mvmt=(0.0000,0.2094,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3279,-2.7803,2.5688) mvmt=(-0.1927,0.0822,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4876,-0.4357) mvmt=(0.0000,0.2094,0.3428) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.012,93.564) lpos=(-10.419,4.488,-0.456) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3018,4.4824,-0.4608) mvmt=(0.1169,0.2043,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3018,4.4824,-0.4608) mvmt=(0.1169,0.2043,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.018,93.559) lpos=(-10.302,4.482,-0.461) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3018,4.4824,-0.4608) mvmt=(0.1169,0.2043,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.3018,4.4824,-0.4608) mvmt=(0.1169,0.2043,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.4768,0.3344,1.1644) mvmt=(0.1169,0.2043,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4768,0.3344,1.1644) out=(-0.4768,0.3344,1.3632) 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.3018,4.4824,-0.2620) mvmt=(0.1169,0.2043,0.5365) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.018,93.758) lpos=(-10.302,4.482,-0.262) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3018,4.4824,-0.2620) mvmt=(0.1169,0.2043,0.5365) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.3018,4.4824,-0.2620) out=(-10.3018,4.4824,-0.2620) 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.2620 dpMove=-0.4012 iDist=1.8495 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.3018,4.4824,-0.2620) mvmt=(0.1169,0.2043,0.5365) 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.4768,0.3344,1.3632) mvmt=(0.1169,0.2043,0.5365) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4982,0.0944,1.2582) mvmt=(0.1169,0.2043,0.5365) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4982,-2.1169,-0.0918) mvmt=(0.1169,0.2043,0.5365) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.3785,-2.6748,2.7625) mvmt=(-0.1421,0.1877,0.5365) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3018,4.4824,-0.2420) mvmt=(0.1169,0.2043,0.5365) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3018,4.4824,-0.2620) mvmt=(0.1169,0.2043,0.5365) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.018,93.758) lpos=(-10.302,4.482,-0.262) lprev=(-10.419,4.278,-0.798) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.018,93.559) lpos=(-10.302,4.482,-0.461) lprev=(-10.419,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3018,4.2781,-0.7984) mvmt=(0.1169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.222,93.222) lpos=(-10.302,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4768,0.1301,0.8268) mvmt=(0.1169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3018,4.2781,-0.7984) mvmt=(0.1169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.222,93.222) lpos=(-10.302,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4768,0.1301,0.8268) mvmt=(0.1169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4768,0.1301,0.8268) out=(-0.4768,0.1301,1.1589) delta=(0.0000,0.0000,0.3322) deltaMag=0.3322 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4464 dpPos=0.2451 dpMove=-0.4243 iDist=0.5536 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3018,4.2781,-0.4663) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.222,93.554) lpos=(-10.302,4.278,-0.466) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3018,4.2781,-0.4663) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 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.3018,4.2781,-0.4663) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4768,0.1301,1.1589) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.4982,-0.1099,1.0539) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.4982,-2.3212,-0.2961) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5664,-2.7549,2.5582) mvmt=(0.0459,0.1075,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.3018,4.2781,-0.4463) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.3018,4.2781,-0.4663) mvmt=(0.1169,0.0000,0.3322) collide=False insertType=1 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.802,7.222,93.554) lpos=(-10.302,4.278,-0.466) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4187,4.4707,-0.4725) mvmt=(0.0000,0.1926,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4707,-0.4725) mvmt=(0.0000,0.1926,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.029,93.547) lpos=(-10.419,4.471,-0.473) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4187,4.4707,-0.4725) mvmt=(0.0000,0.1926,0.3259) 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.4187,4.4707,-0.4725) mvmt=(0.0000,0.1926,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.3227,1.1527) mvmt=(0.0000,0.1926,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.0827,1.0477) mvmt=(0.0000,0.1926,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.1286,-0.3023) mvmt=(0.0000,0.1926,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3434,-2.7869,2.5520) mvmt=(-0.1771,0.0755,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4707,-0.4525) mvmt=(0.0000,0.1926,0.3259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.029,93.547) lpos=(-10.419,4.471,-0.473) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2991,4.4871,-0.4561) mvmt=(0.1196,0.2090,0.3423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2991,4.4871,-0.4561) mvmt=(0.1196,0.2090,0.3423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.564) lpos=(-10.299,4.487,-0.456) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2991,4.4871,-0.4561) mvmt=(0.1196,0.2090,0.3423) 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.2991,4.4871,-0.4561) mvmt=(0.1196,0.2090,0.3423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4742,0.3391,1.1691) mvmt=(0.1196,0.2090,0.3423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4742,0.3391,1.1691) out=(-0.4742,0.3391,1.3679) 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.2991,4.4871,-0.2573) mvmt=(0.1196,0.2090,0.5411) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.763) lpos=(-10.299,4.487,-0.257) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2991,4.4871,-0.2573) mvmt=(0.1196,0.2090,0.5411) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.2991,4.4871,-0.2573) out=(-10.2991,4.4871,-0.2573) 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.2573 dpMove=-0.4012 iDist=1.8379 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.2991,4.4871,-0.2573) mvmt=(0.1196,0.2090,0.5411) 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.4742,0.3391,1.3679) mvmt=(0.1196,0.2090,0.5411) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5009,0.0991,1.2629) mvmt=(0.1196,0.2090,0.5411) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5009,-2.1122,-0.0871) mvmt=(0.1196,0.2090,0.5411) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.3753,-2.6705,2.7672) mvmt=(-0.1453,0.1920,0.5411) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2991,4.4871,-0.2373) mvmt=(0.1196,0.2090,0.5411) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2991,4.4871,-0.2573) mvmt=(0.1196,0.2090,0.5411) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.763) lpos=(-10.299,4.487,-0.257) lprev=(-10.419,4.278,-0.798) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.564) lpos=(-10.299,4.487,-0.456) lprev=(-10.419,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2991,4.2781,-0.7984) mvmt=(0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.222) lpos=(-10.299,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4742,0.1301,0.8268) mvmt=(0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2991,4.2781,-0.7984) mvmt=(0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.222) lpos=(-10.299,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4742,0.1301,0.8268) mvmt=(0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4742,0.1301,0.8268) out=(-0.4742,0.1301,1.1589) delta=(0.0000,0.0000,0.3322) deltaMag=0.3322 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4464 dpPos=0.2451 dpMove=-0.4243 iDist=0.5536 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2991,4.2781,-0.4663) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.554) lpos=(-10.299,4.278,-0.466) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2991,4.2781,-0.4663) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 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.2991,4.2781,-0.4663) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4742,0.1301,1.1589) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5009,-0.1099,1.0539) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5009,-2.3212,-0.2961) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5675,-2.7525,2.5582) mvmt=(0.0469,0.1100,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.2991,4.2781,-0.4463) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.2991,4.2781,-0.4663) mvmt=(0.1196,0.0000,0.3322) collide=False insertType=1 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.554) lpos=(-10.299,4.278,-0.466) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4187,4.4853,-0.4579) mvmt=(0.0000,0.2072,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4853,-0.4579) mvmt=(0.0000,0.2072,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.015,93.562) lpos=(-10.419,4.485,-0.458) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4187,4.4853,-0.4579) mvmt=(0.0000,0.2072,0.3405) 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.4187,4.4853,-0.4579) mvmt=(0.0000,0.2072,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.3373,1.1673) mvmt=(0.0000,0.2072,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.0973,1.0623) mvmt=(0.0000,0.2072,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.1140,-0.2877) mvmt=(0.0000,0.2072,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3300,-2.7811,2.5666) mvmt=(-0.1906,0.0813,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4853,-0.4379) mvmt=(0.0000,0.2072,0.3405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.015,93.562) lpos=(-10.419,4.485,-0.458) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2995,4.4866,-0.4567) mvmt=(0.1192,0.2084,0.3418) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2995,4.4866,-0.4567) mvmt=(0.1192,0.2084,0.3418) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.563) lpos=(-10.299,4.487,-0.457) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2995,4.4866,-0.4567) mvmt=(0.1192,0.2084,0.3418) 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.2995,4.4866,-0.4567) mvmt=(0.1192,0.2084,0.3418) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4745,0.3385,1.1685) mvmt=(0.1192,0.2084,0.3418) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4745,0.3385,1.1685) out=(-0.4745,0.3385,1.3674) 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.2995,4.4866,-0.2578) mvmt=(0.1192,0.2084,0.5406) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.762) lpos=(-10.299,4.487,-0.258) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2995,4.4866,-0.2578) mvmt=(0.1192,0.2084,0.5406) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.2995,4.4866,-0.2578) out=(-10.2995,4.4866,-0.2578) 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.2578 dpMove=-0.4012 iDist=1.8392 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.2995,4.4866,-0.2578) mvmt=(0.1192,0.2084,0.5406) 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.4745,0.3385,1.3674) mvmt=(0.1192,0.2084,0.5406) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5005,0.0985,1.2624) mvmt=(0.1192,0.2084,0.5406) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5005,-2.1127,-0.0876) mvmt=(0.1192,0.2084,0.5406) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.3756,-2.6710,2.7667) mvmt=(-0.1449,0.1915,0.5406) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2995,4.4866,-0.2378) mvmt=(0.1192,0.2084,0.5406) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2995,4.4866,-0.2578) mvmt=(0.1192,0.2084,0.5406) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.762) lpos=(-10.299,4.487,-0.258) lprev=(-10.419,4.278,-0.798) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.013,93.563) lpos=(-10.299,4.487,-0.457) lprev=(-10.419,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2995,4.2781,-0.7984) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.222) lpos=(-10.299,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4745,0.1301,0.8268) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2995,4.2781,-0.7984) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.222) lpos=(-10.299,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4745,0.1301,0.8268) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4745,0.1301,0.8268) out=(-0.4745,0.1301,1.1589) delta=(0.0000,0.0000,0.3322) deltaMag=0.3322 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4464 dpPos=0.2451 dpMove=-0.4243 iDist=0.5536 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2995,4.2781,-0.4663) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.554) lpos=(-10.299,4.278,-0.466) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2995,4.2781,-0.4663) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 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.2995,4.2781,-0.4663) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4745,0.1301,1.1589) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5005,-0.1099,1.0539) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5005,-2.3212,-0.2961) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5673,-2.7528,2.5582) mvmt=(0.0468,0.1097,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.2995,4.2781,-0.4463) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.2995,4.2781,-0.4663) mvmt=(0.1192,0.0000,0.3322) collide=False insertType=1 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.799,7.222,93.554) lpos=(-10.299,4.278,-0.466) lprev=(-10.419,4.278,-0.798) 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 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4187,4.4721,-0.4712) mvmt=(0.0000,0.1939,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4721,-0.4712) mvmt=(0.0000,0.1939,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.028,93.549) lpos=(-10.419,4.472,-0.471) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4187,4.4721,-0.4712) mvmt=(0.0000,0.1939,0.3273) 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.4187,4.4721,-0.4712) mvmt=(0.0000,0.1939,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.3240,1.1540) mvmt=(0.0000,0.1939,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.0840,1.0490) mvmt=(0.0000,0.1939,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.1273,-0.3010) mvmt=(0.0000,0.1939,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3422,-2.7864,2.5533) mvmt=(-0.1784,0.0761,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4721,-0.4512) mvmt=(0.0000,0.1939,0.3273) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.028,93.549) lpos=(-10.419,4.472,-0.471) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3693,4.4967,-0.4465) mvmt=(0.0494,0.2186,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3693,4.4967,-0.4465) mvmt=(0.0494,0.2186,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.003,93.573) lpos=(-10.369,4.497,-0.447) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3693,4.4967,-0.4465) mvmt=(0.0494,0.2186,0.3519) 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.3693,4.4967,-0.4465) mvmt=(0.0494,0.2186,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5443,0.3487,1.1787) mvmt=(0.0494,0.2186,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4307,0.1087,1.0737) mvmt=(0.0494,0.2186,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4307,-2.1026,-0.2763) mvmt=(0.0494,0.2186,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3389,-2.7313,2.5780) mvmt=(-0.1817,0.1312,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3693,4.4967,-0.4265) mvmt=(0.0494,0.2186,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.003,93.573) lpos=(-10.369,4.497,-0.447) lprev=(-10.419,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3693,4.2781,-0.7984) mvmt=(0.0494,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.222,93.222) lpos=(-10.369,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5443,0.1301,0.8268) mvmt=(0.0494,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3693,4.2781,-0.7984) mvmt=(0.0494,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.222,93.222) lpos=(-10.369,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5443,0.1301,0.8268) mvmt=(0.0494,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5443,0.1301,0.8268) out=(-0.5443,0.1301,1.1589) delta=(0.0000,0.0000,0.3322) deltaMag=0.3322 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4464 dpPos=0.2451 dpMove=-0.4243 iDist=0.5536 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3693,4.2781,-0.4663) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.222,93.554) lpos=(-10.369,4.278,-0.466) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3693,4.2781,-0.4663) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 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.3693,4.2781,-0.4663) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5443,0.1301,1.1589) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.4307,-0.1099,1.0539) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.4307,-2.3212,-0.2961) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(0.5399,-2.8170,2.5582) mvmt=(0.0194,0.0454,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.3693,4.2781,-0.4463) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=0 objState=0x303 winterp=0.4464 return=-1 +[push-back-disp] site=dispatch center=(-10.3693,4.2781,-0.4663) mvmt=(0.0494,0.0000,0.3322) collide=False insertType=1 objState=0x303 winterp=0.4464 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.222,93.554) lpos=(-10.369,4.278,-0.466) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4187,4.4923,-0.4510) mvmt=(0.0000,0.2141,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4923,-0.4510) mvmt=(0.0000,0.2141,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.008,93.569) lpos=(-10.419,4.492,-0.451) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4187,4.4923,-0.4510) mvmt=(0.0000,0.2141,0.3475) 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.4187,4.4923,-0.4510) mvmt=(0.0000,0.2141,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.3442,1.1742) mvmt=(0.0000,0.2141,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.1042,1.0692) mvmt=(0.0000,0.2141,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.1070,-0.2808) mvmt=(0.0000,0.2141,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3236,-2.7784,2.5735) mvmt=(-0.1970,0.0840,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4187,4.4923,-0.4310) mvmt=(0.0000,0.2141,0.3475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.919,7.008,93.569) lpos=(-10.419,4.492,-0.451) lprev=(-10.419,4.278,-0.798) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4424,4.4879,-0.4553) mvmt=(-0.0237,0.2098,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.4879,-0.4553) mvmt=(-0.0237,0.2098,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.012,93.565) lpos=(-10.442,4.488,-0.455) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4424,4.4879,-0.4553) mvmt=(-0.0237,0.2098,0.3431) 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.4424,4.4879,-0.4553) mvmt=(-0.0237,0.2098,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6174,0.3399,1.1699) mvmt=(-0.0237,0.2098,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,0.0999,1.0649) mvmt=(-0.0237,0.2098,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-2.1114,-0.2851) mvmt=(-0.0237,0.2098,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3183,-2.8019,2.5692) mvmt=(-0.2022,0.0605,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.4879,-0.4353) mvmt=(-0.0237,0.2098,0.3431) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.012,93.565) lpos=(-10.442,4.488,-0.455) lprev=(-10.419,4.278,-0.798) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4424,4.2781,-0.7984) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.222,93.222) lpos=(-10.442,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6174,0.1301,0.8268) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-0.1099,0.7218) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-2.3212,-0.6283) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.2781,-0.7785) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.2781,-1.5484) mvmt=(-0.0237,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.222,92.472) lpos=(-10.442,4.278,-1.548) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6174,0.1301,0.0768) mvmt=(-0.0237,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-0.1099,-0.0282) mvmt=(-0.0237,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3576,-0.1099,-0.0282) out=(0.3576,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4424,4.2781,-0.7984) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.222,93.222) lpos=(-10.442,4.278,-0.798) lprev=(-10.419,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6174,0.1301,0.8268) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-0.1099,0.7218) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-2.3212,-0.6283) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.2781,-0.7785) mvmt=(-0.0237,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5015,4.4803,-0.5893) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.020,93.431) lpos=(-10.501,4.480,-0.589) lprev=(-10.442,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5015,4.4803,-0.5893) mvmt=(-0.0591,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=(-0.6765,0.3322,1.0359) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,0.0922,0.9309) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,-2.1190,-0.4192) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3022,-2.8593,2.4352) mvmt=(-0.2091,0.0249,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5015,4.4803,-0.5694) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5015,4.4803,-0.5893) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.020,93.431) lpos=(-10.501,4.480,-0.589) lprev=(-10.442,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5015,4.4803,-0.5893) mvmt=(-0.0591,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=(-0.6765,0.3322,1.0359) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,0.0922,0.9309) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,-2.1190,-0.4192) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3022,-2.8593,2.4352) mvmt=(-0.2091,0.0249,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5015,4.4803,-0.5694) mvmt=(-0.0591,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5015,4.2781,-0.7984) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.222,93.222) lpos=(-10.501,4.278,-0.798) lprev=(-10.442,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6765,0.1301,0.8268) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,-0.1099,0.7218) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,-2.3212,-0.6283) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5015,4.2781,-0.7785) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5015,4.2781,-1.5484) mvmt=(-0.0591,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.222,92.472) lpos=(-10.501,4.278,-1.548) lprev=(-10.442,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6765,0.1301,0.0768) mvmt=(-0.0591,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,-0.1099,-0.0282) mvmt=(-0.0591,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2985,-0.1099,-0.0282) out=(0.2985,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5015,4.2781,-0.7984) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.222,93.222) lpos=(-10.501,4.278,-0.798) lprev=(-10.442,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6765,0.1301,0.8268) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,-0.1099,0.7218) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2985,-2.3212,-0.6283) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5015,4.2781,-0.7785) mvmt=(-0.0591,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5891,4.4802,-0.5894) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.020,93.431) lpos=(-10.589,4.480,-0.589) lprev=(-10.501,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5891,4.4802,-0.5894) mvmt=(-0.0876,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=(-0.7641,0.3322,1.0358) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,0.0922,0.9308) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,-2.1191,-0.4192) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2678,-2.9399,2.4351) mvmt=(-0.2203,-0.0013,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5891,4.4802,-0.5694) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5891,4.4802,-0.5894) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.020,93.431) lpos=(-10.589,4.480,-0.589) lprev=(-10.501,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5891,4.4802,-0.5894) mvmt=(-0.0876,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=(-0.7641,0.3322,1.0358) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,0.0922,0.9308) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,-2.1191,-0.4192) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2678,-2.9399,2.4351) mvmt=(-0.2203,-0.0013,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5891,4.4802,-0.5694) mvmt=(-0.0876,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5891,4.2781,-0.7984) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.222,93.222) lpos=(-10.589,4.278,-0.798) lprev=(-10.501,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7641,0.1301,0.8268) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,-0.1099,0.7218) mvmt=(-0.0876,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,-2.3212,-0.6283) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5891,4.2781,-0.7785) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5891,4.2781,-1.5484) mvmt=(-0.0876,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.222,92.472) lpos=(-10.589,4.278,-1.548) lprev=(-10.501,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7641,0.1301,0.0768) mvmt=(-0.0876,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,-0.1099,-0.0282) mvmt=(-0.0876,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2109,-0.1099,-0.0282) out=(0.2109,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5891,4.2781,-0.7984) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.222,93.222) lpos=(-10.589,4.278,-0.798) lprev=(-10.501,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7641,0.1301,0.8268) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,-0.1099,0.7218) mvmt=(-0.0876,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2109,-2.3212,-0.6283) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5891,4.2781,-0.7785) mvmt=(-0.0876,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6734,4.4727,-0.5972) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.027,93.423) lpos=(-10.673,4.473,-0.597) lprev=(-10.589,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6734,4.4727,-0.5972) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8484,0.3246,1.0280) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,0.0846,0.9230) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,-2.1266,-0.4270) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2417,-3.0204,2.4273) mvmt=(-0.2120,-0.0012,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6734,4.4727,-0.5772) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6734,4.4727,-0.5972) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.027,93.423) lpos=(-10.673,4.473,-0.597) lprev=(-10.589,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6734,4.4727,-0.5972) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8484,0.3246,1.0280) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,0.0846,0.9230) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,-2.1266,-0.4270) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2417,-3.0204,2.4273) mvmt=(-0.2120,-0.0012,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6734,4.4727,-0.5772) mvmt=(-0.0843,0.1945,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6734,4.2781,-0.7984) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.222,93.222) lpos=(-10.673,4.278,-0.798) lprev=(-10.589,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8484,0.1301,0.8268) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,-0.1099,0.7218) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,-2.3212,-0.6283) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6734,4.2781,-0.7785) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6734,4.2781,-1.5484) mvmt=(-0.0843,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.222,92.472) lpos=(-10.673,4.278,-1.548) lprev=(-10.589,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8484,0.1301,0.0768) mvmt=(-0.0843,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,-0.1099,-0.0282) mvmt=(-0.0843,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1266,-0.1099,-0.0282) out=(0.1266,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6734,4.2781,-0.7984) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.173,7.222,93.222) lpos=(-10.673,4.278,-0.798) lprev=(-10.589,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8484,0.1301,0.8268) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,-0.1099,0.7218) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1266,-2.3212,-0.6283) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6734,4.2781,-0.7785) mvmt=(-0.0843,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7589,4.4753,-0.5944) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.025,93.426) lpos=(-10.759,4.475,-0.594) lprev=(-10.673,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7589,4.4753,-0.5944) mvmt=(-0.0855,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.9339,0.3273,1.0308) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,0.0873,0.9258) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,-2.1240,-0.4242) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2057,-3.0980,2.4301) mvmt=(-0.2149,-0.0013,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7589,4.4753,-0.5744) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7589,4.4753,-0.5944) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.025,93.426) lpos=(-10.759,4.475,-0.594) lprev=(-10.673,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7589,4.4753,-0.5944) mvmt=(-0.0855,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.9339,0.3273,1.0308) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,0.0873,0.9258) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,-2.1240,-0.4242) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2057,-3.0980,2.4301) mvmt=(-0.2149,-0.0013,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7589,4.4753,-0.5744) mvmt=(-0.0855,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7589,4.2781,-0.7984) mvmt=(-0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.222,93.222) lpos=(-10.759,4.278,-0.798) lprev=(-10.673,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9339,0.1301,0.8268) mvmt=(-0.0855,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,-0.1099,0.7218) mvmt=(-0.0855,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,-2.3212,-0.6283) mvmt=(-0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7589,4.2781,-0.7785) mvmt=(-0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7589,4.2781,-1.5484) mvmt=(-0.0855,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.222,92.472) lpos=(-10.759,4.278,-1.548) lprev=(-10.673,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9339,0.1301,0.0768) mvmt=(-0.0855,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,-0.1099,-0.0282) mvmt=(-0.0855,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0411,-0.1099,-0.0282) out=(0.0411,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7589,4.2781,-0.7984) mvmt=(-0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.222,93.222) lpos=(-10.759,4.278,-0.798) lprev=(-10.673,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9339,0.1301,0.8268) mvmt=(-0.0855,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,-0.1099,0.7218) mvmt=(-0.0855,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0411,-2.3212,-0.6283) mvmt=(-0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7589,4.2781,-0.7785) mvmt=(-0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8447,4.4759,-0.5938) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.024,93.426) lpos=(-10.845,4.476,-0.594) lprev=(-10.759,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8447,4.4759,-0.5938) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0197,0.3279,1.0314) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,0.0879,0.9264) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,-2.1234,-0.4236) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8447,4.4759,-0.5738) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8447,4.4759,-0.5938) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.024,93.426) lpos=(-10.845,4.476,-0.594) lprev=(-10.759,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8447,4.4759,-0.5938) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0197,0.3279,1.0314) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,0.0879,0.9264) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,-2.1234,-0.4236) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8447,4.4759,-0.5738) mvmt=(-0.0857,0.1978,0.2046) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8447,4.2781,-0.7984) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.222,93.222) lpos=(-10.845,4.278,-0.798) lprev=(-10.759,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0197,0.1301,0.8268) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,-0.1099,0.7218) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,-2.3212,-0.6283) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8447,4.2781,-0.7785) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8447,4.2781,-1.5484) mvmt=(-0.0857,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.222,92.472) lpos=(-10.845,4.278,-1.548) lprev=(-10.759,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0197,0.1301,0.0768) mvmt=(-0.0857,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,-0.1099,-0.0282) mvmt=(-0.0857,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0447,-0.1099,-0.0282) out=(-0.0447,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8447,4.2781,-0.7984) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.345,7.222,93.222) lpos=(-10.845,4.278,-0.798) lprev=(-10.759,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0197,0.1301,0.8268) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,-0.1099,0.7218) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0447,-2.3212,-0.6283) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8447,4.2781,-0.7785) mvmt=(-0.0857,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9325,4.4807,-0.5889) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.019,93.431) lpos=(-10.933,4.481,-0.589) lprev=(-10.845,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9325,4.4807,-0.5889) mvmt=(-0.0878,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.1075,0.3327,1.0363) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,0.0927,0.9313) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,-2.1186,-0.4187) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9325,4.4807,-0.5689) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9325,4.4807,-0.5889) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.019,93.431) lpos=(-10.933,4.481,-0.589) lprev=(-10.845,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9325,4.4807,-0.5889) mvmt=(-0.0878,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.1075,0.3327,1.0363) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,0.0927,0.9313) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,-2.1186,-0.4187) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9325,4.4807,-0.5689) mvmt=(-0.0878,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9325,4.2781,-0.7984) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.222,93.222) lpos=(-10.933,4.278,-0.798) lprev=(-10.845,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1075,0.1301,0.8268) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,-0.1099,0.7218) mvmt=(-0.0878,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,-2.3212,-0.6283) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9325,4.2781,-0.7785) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9325,4.2781,-1.5484) mvmt=(-0.0878,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.222,92.472) lpos=(-10.933,4.278,-1.548) lprev=(-10.845,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1075,0.1301,0.0768) mvmt=(-0.0878,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,-0.1099,-0.0282) mvmt=(-0.0878,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1325,-0.1099,-0.0282) out=(-0.1325,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9325,4.2781,-0.7984) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.222,93.222) lpos=(-10.933,4.278,-0.798) lprev=(-10.845,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1075,0.1301,0.8268) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,-0.1099,0.7218) mvmt=(-0.0878,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1325,-2.3212,-0.6283) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9325,4.2781,-0.7785) mvmt=(-0.0878,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9886,4.4850,-0.5845) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.015,93.436) lpos=(-10.989,4.485,-0.584) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9886,4.4850,-0.5845) mvmt=(-0.0561,0.2068,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.1636,0.3369,1.0407) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,0.0969,0.9357) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,-2.1143,-0.4143) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9886,4.4850,-0.5645) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9886,4.4850,-0.5845) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.015,93.436) lpos=(-10.989,4.485,-0.584) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9886,4.4850,-0.5845) mvmt=(-0.0561,0.2068,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.1636,0.3369,1.0407) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,0.0969,0.9357) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,-2.1143,-0.4143) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9886,4.4850,-0.5645) mvmt=(-0.0561,0.2068,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9886,4.2781,-0.7984) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.222,93.222) lpos=(-10.989,4.278,-0.798) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1636,0.1301,0.8268) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,-0.1099,0.7218) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,-2.3212,-0.6283) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9886,4.2781,-0.7785) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9886,4.2781,-1.5484) mvmt=(-0.0561,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.222,92.472) lpos=(-10.989,4.278,-1.548) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1636,0.1301,0.0768) mvmt=(-0.0561,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,-0.1099,-0.0282) mvmt=(-0.0561,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1886,-0.1099,-0.0282) out=(-0.1886,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9886,4.2781,-0.7984) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.222,93.222) lpos=(-10.989,4.278,-0.798) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1636,0.1301,0.8268) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,-0.1099,0.7218) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1886,-2.3212,-0.6283) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9886,4.2781,-0.7785) mvmt=(-0.0561,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0082,4.4804,-0.5892) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.508,7.020,93.431) lpos=(-11.008,4.480,-0.589) lprev=(-10.989,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0082,4.4804,-0.5892) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1832,0.3323,1.0360) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2082,0.0923,0.9310) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2082,-2.1189,-0.4190) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0082,4.4804,-0.5692) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0082,4.4804,-0.5892) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.508,7.020,93.431) lpos=(-11.008,4.480,-0.589) lprev=(-10.989,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0082,4.4804,-0.5892) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1832,0.3323,1.0360) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2082,0.0923,0.9310) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2082,-2.1189,-0.4190) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0082,4.4804,-0.5692) mvmt=(-0.0196,0.2022,0.2092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0082,4.2781,-0.7984) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.508,7.222,93.222) lpos=(-11.008,4.278,-0.798) lprev=(-10.989,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1832,0.1301,0.8268) 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.2082,-0.1099,0.7218) 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.2082,-2.3212,-0.6283) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0082,4.2781,-0.7785) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0082,4.2781,-1.5484) mvmt=(-0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.508,7.222,92.472) lpos=(-11.008,4.278,-1.548) lprev=(-10.989,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1832,0.1301,0.0768) 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.2082,-0.1099,-0.0282) 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.2082,-0.1099,-0.0282) out=(-0.2082,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0082,4.2781,-0.7984) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.508,7.222,93.222) lpos=(-11.008,4.278,-0.798) lprev=(-10.989,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1832,0.1301,0.8268) 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.2082,-0.1099,0.7218) 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.2082,-2.3212,-0.6283) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0082,4.2781,-0.7785) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9936,4.4776,-0.5922) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.022,93.428) lpos=(-10.994,4.478,-0.592) lprev=(-11.008,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9936,4.4776,-0.5922) mvmt=(0.0146,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.1686,0.3295,1.0330) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,0.0895,0.9280) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,-2.1218,-0.4220) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9936,4.4776,-0.5722) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9936,4.4776,-0.5922) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.022,93.428) lpos=(-10.994,4.478,-0.592) lprev=(-11.008,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9936,4.4776,-0.5922) mvmt=(0.0146,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.1686,0.3295,1.0330) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,0.0895,0.9280) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,-2.1218,-0.4220) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9936,4.4776,-0.5722) mvmt=(0.0146,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9936,4.2781,-0.7984) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.222,93.222) lpos=(-10.994,4.278,-0.798) lprev=(-11.008,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1686,0.1301,0.8268) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,-0.1099,0.7218) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,-2.3212,-0.6283) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9936,4.2781,-0.7785) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9936,4.2781,-1.5484) mvmt=(0.0146,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.222,92.472) lpos=(-10.994,4.278,-1.548) lprev=(-11.008,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1686,0.1301,0.0768) mvmt=(0.0146,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,-0.1099,-0.0282) mvmt=(0.0146,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1936,-0.1099,-0.0282) out=(-0.1936,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9936,4.2781,-0.7984) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.222,93.222) lpos=(-10.994,4.278,-0.798) lprev=(-11.008,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1686,0.1301,0.8268) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,-0.1099,0.7218) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1936,-2.3212,-0.6283) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9936,4.2781,-0.7785) mvmt=(0.0146,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9662,4.4825,-0.5870) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,7.017,93.433) lpos=(-10.966,4.483,-0.587) lprev=(-10.994,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9662,4.4825,-0.5870) mvmt=(0.0274,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=(-1.1412,0.3345,1.0382) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,0.0945,0.9332) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,-2.1168,-0.4168) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9662,4.4825,-0.5670) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9662,4.4825,-0.5870) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,7.017,93.433) lpos=(-10.966,4.483,-0.587) lprev=(-10.994,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9662,4.4825,-0.5870) mvmt=(0.0274,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=(-1.1412,0.3345,1.0382) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,0.0945,0.9332) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,-2.1168,-0.4168) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9662,4.4825,-0.5670) mvmt=(0.0274,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9662,4.2781,-0.7984) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,7.222,93.222) lpos=(-10.966,4.278,-0.798) lprev=(-10.994,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1412,0.1301,0.8268) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,-0.1099,0.7218) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,-2.3212,-0.6283) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9662,4.2781,-0.7785) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9662,4.2781,-1.5484) mvmt=(0.0274,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,7.222,92.472) lpos=(-10.966,4.278,-1.548) lprev=(-10.994,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1412,0.1301,0.0768) mvmt=(0.0274,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,-0.1099,-0.0282) mvmt=(0.0274,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1662,-0.1099,-0.0282) out=(-0.1662,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9662,4.2781,-0.7984) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,7.222,93.222) lpos=(-10.966,4.278,-0.798) lprev=(-10.994,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1412,0.1301,0.8268) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,-0.1099,0.7218) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1662,-2.3212,-0.6283) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9662,4.2781,-0.7785) mvmt=(0.0274,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9396,4.4765,-0.5932) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.440,7.023,93.427) lpos=(-10.940,4.477,-0.593) lprev=(-10.966,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9396,4.4765,-0.5932) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1146,0.3285,1.0320) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.0885,0.9270) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-2.1228,-0.4230) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9396,4.4765,-0.5732) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9396,4.4765,-0.5932) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.440,7.023,93.427) lpos=(-10.940,4.477,-0.593) lprev=(-10.966,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9396,4.4765,-0.5932) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1146,0.3285,1.0320) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.0885,0.9270) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-2.1228,-0.4230) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9396,4.4765,-0.5732) mvmt=(0.0266,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9396,4.2781,-0.7984) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.440,7.222,93.222) lpos=(-10.940,4.278,-0.798) lprev=(-10.966,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1146,0.1301,0.8268) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-0.1099,0.7218) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-2.3212,-0.6283) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9396,4.2781,-0.7785) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9396,4.2781,-1.5484) mvmt=(0.0266,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.440,7.222,92.472) lpos=(-10.940,4.278,-1.548) lprev=(-10.966,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1146,0.1301,0.0768) mvmt=(0.0266,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-0.1099,-0.0282) mvmt=(0.0266,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1396,-0.1099,-0.0282) out=(-0.1396,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9396,4.2781,-0.7984) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.440,7.222,93.222) lpos=(-10.940,4.278,-0.798) lprev=(-10.966,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1146,0.1301,0.8268) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-0.1099,0.7218) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-2.3212,-0.6283) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9396,4.2781,-0.7785) mvmt=(0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9203,4.4805,-0.5891) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.020,93.431) lpos=(-10.920,4.480,-0.589) lprev=(-10.940,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9203,4.4805,-0.5891) mvmt=(0.0193,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.0953,0.3324,1.0361) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1203,0.0924,0.9311) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1203,-2.1188,-0.4189) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9203,4.4805,-0.5691) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9203,4.4805,-0.5891) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.020,93.431) lpos=(-10.920,4.480,-0.589) lprev=(-10.940,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9203,4.4805,-0.5891) mvmt=(0.0193,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.0953,0.3324,1.0361) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1203,0.0924,0.9311) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1203,-2.1188,-0.4189) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9203,4.4805,-0.5691) mvmt=(0.0193,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9203,4.2781,-0.7984) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.222,93.222) lpos=(-10.920,4.278,-0.798) lprev=(-10.940,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0953,0.1301,0.8268) 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.1203,-0.1099,0.7218) 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.1203,-2.3212,-0.6283) 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.9203,4.2781,-0.7785) 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.9203,4.2781,-1.5484) mvmt=(0.0193,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.222,92.472) lpos=(-10.920,4.278,-1.548) lprev=(-10.940,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0953,0.1301,0.0768) 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.1203,-0.1099,-0.0282) 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.1203,-0.1099,-0.0282) out=(-0.1203,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9203,4.2781,-0.7984) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,7.222,93.222) lpos=(-10.920,4.278,-0.798) lprev=(-10.940,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0953,0.1301,0.8268) 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.1203,-0.1099,0.7218) 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.1203,-2.3212,-0.6283) 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.9203,4.2781,-0.7785) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9333,4.4694,-0.6006) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.031,93.419) lpos=(-10.933,4.469,-0.601) lprev=(-10.920,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9333,4.4694,-0.6006) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1083,0.3213,1.0246) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1333,0.0813,0.9196) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1333,-2.1299,-0.4304) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9333,4.4694,-0.5806) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9333,4.4694,-0.6006) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.031,93.419) lpos=(-10.933,4.469,-0.601) lprev=(-10.920,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9333,4.4694,-0.6006) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1083,0.3213,1.0246) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1333,0.0813,0.9196) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1333,-2.1299,-0.4304) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9333,4.4694,-0.5806) mvmt=(-0.0130,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9333,4.2781,-0.7984) mvmt=(-0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.222,93.222) lpos=(-10.933,4.278,-0.798) lprev=(-10.920,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1083,0.1301,0.8268) 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.1333,-0.1099,0.7218) 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.1333,-2.3212,-0.6283) 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.9333,4.2781,-0.7785) 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.9333,4.2781,-1.5484) mvmt=(-0.0130,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.222,92.472) lpos=(-10.933,4.278,-1.548) lprev=(-10.920,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1083,0.1301,0.0768) 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.1333,-0.1099,-0.0282) 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.1333,-0.1099,-0.0282) out=(-0.1333,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9333,4.2781,-0.7984) mvmt=(-0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.222,93.222) lpos=(-10.933,4.278,-0.798) lprev=(-10.920,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1083,0.1301,0.8268) 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.1333,-0.1099,0.7218) 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.1333,-2.3212,-0.6283) 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.9333,4.2781,-0.7785) 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:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9778,4.4694,-0.6006) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.478,7.031,93.419) lpos=(-10.978,4.469,-0.601) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9778,4.4694,-0.6006) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1528,0.3213,1.0246) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,0.0813,0.9196) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,-2.1300,-0.4304) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9778,4.4694,-0.5806) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9778,4.4694,-0.6006) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.478,7.031,93.419) lpos=(-10.978,4.469,-0.601) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9778,4.4694,-0.6006) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1528,0.3213,1.0246) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,0.0813,0.9196) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,-2.1300,-0.4304) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9778,4.4694,-0.5806) mvmt=(-0.0445,0.1912,0.1978) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9778,4.2781,-0.7984) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.478,7.222,93.222) lpos=(-10.978,4.278,-0.798) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1528,0.1301,0.8268) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,-0.1099,0.7218) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,-2.3212,-0.6283) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9778,4.2781,-0.7785) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9778,4.2781,-1.5484) mvmt=(-0.0445,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.478,7.222,92.472) lpos=(-10.978,4.278,-1.548) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1528,0.1301,0.0768) mvmt=(-0.0445,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,-0.1099,-0.0282) mvmt=(-0.0445,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1778,-0.1099,-0.0282) out=(-0.1778,-0.1099,0.7218) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9778,4.2781,-0.7984) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.478,7.222,93.222) lpos=(-10.978,4.278,-0.798) lprev=(-10.933,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1528,0.1301,0.8268) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,-0.1099,0.7218) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1778,-2.3212,-0.6283) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9778,4.2781,-0.7785) mvmt=(-0.0445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:663 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:663 +[12:03:09 INF] smoke plugin disabled (saw 10947 entities total) diff --git a/docs/research/2026-05-21-a6-captures/scen4_cottage_cellar_slice3v2/acdream.log b/docs/research/2026-05-21-a6-captures/scen4_cottage_cellar_slice3v2/acdream.log new file mode 100644 index 0000000..a2381f6 --- /dev/null +++ b/docs/research/2026-05-21-a6-captures/scen4_cottage_cellar_slice3v2/acdream.log @@ -0,0 +1,60161 @@ +[12:05:10 INF] scanning plugins in C:\Users\erikn\source\repos\acdream\.claude\worktrees\strange-albattani-3fc83c\src\AcDream.App\bin\Debug\net10.0\plugins +[12:05:10 INF] smoke plugin initialized +[12:05:10 INF] loaded plugin acdream.smoke (Smoke Plugin) +[12:05:10 INF] smoke plugin enabled +[12:05:10 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 day5 ? DayGroup[19] "Rainy" (Chance=5.00, 17 objects, 11 keyframes, weather=Overcast) +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=(141.5,7.2,92.7)@0xA9B40147 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=0x80000F1B name="Refurbisher's Tally" 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=0x80000F1C name="Agent of Arcanum List" setup=0x02000155 pos=no-pos itemType=0x00002000 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=0x80000604 name="Ust" setup=0x02000D5C pos=no-pos itemType=0x20000000 animParts=0 texChanges=0 subPalettes=0 +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=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=0x80000707 name="Dragonsblood" 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=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=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=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=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=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=0x80000700 name="Turpeth" 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=0x80000711 name="Vervain" setup=0x02000181 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=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=0x80001BB7 name="Pathwarden Gauntlets" setup=0x020000D8 pos=no-pos itemType=0x00000002 animParts=1 texChanges=1 subPalettes=1 +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: 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=2 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=0x7A9B4014 name="Chest" setup=0x0200007C pos=(132.5,9.9,97.0)@0xA9B4014B itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +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=0x50000001 name="+Je" setup=0x02000001 pos=(125.8,7.6,97.0)@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=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=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=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: 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: 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=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: 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=4 fr0=16 1frame=1 partFrames=0 +live: summary recv=100 hydrated=43 drops: noPos=57 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=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=0x800002A1 name="Simi" setup=0x0200013F pos=no-pos itemType=0x00000001 animParts=1 texChanges=3 subPalettes=1 +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 +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 -> 0xA9B40147 pos=(141.478,7.222,92.742) 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] ScrollDown Press +[input] ScrollDown Press +[input] ScrollDown Press +[input] ScrollDown Press +[input] MovementTurnRight Press +[input] MovementBackup Press +[push-back-disp] site=dispatch center=(-11.0407,4.0634,-0.7984) mvmt=(-0.0629,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.541,7.437,93.222) lpos=(-11.041,4.063,-0.798) lprev=(-10.978,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2157,-0.0847,0.8268) mvmt=(-0.0629,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2407,-0.3247,0.7218) mvmt=(-0.0629,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2407,-2.5359,-0.6283) mvmt=(-0.0629,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0407,4.0634,-0.7785) mvmt=(-0.0629,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0407,4.0634,-1.5484) mvmt=(-0.0629,-0.2148,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.541,7.437,92.472) lpos=(-11.041,4.063,-1.548) lprev=(-10.978,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2157,-0.0847,0.0768) mvmt=(-0.0629,-0.2148,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2407,-0.3247,-0.0282) mvmt=(-0.0629,-0.2148,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2407,-0.3247,-0.0282) out=(-0.2407,-0.3247,0.4996) delta=(0.0000,0.0000,0.5278) deltaMag=0.5278 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.2962 dpPos=0.1131 dpMove=-0.5213 iDist=0.7038 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.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 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.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0407,4.0634,-1.0206) mvmt=(-0.0629,-0.2148,-0.2222) collide=False insertType=0 objState=0x303 winterp=0.2962 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.541,7.437,92.999) lpos=(-11.041,4.063,-1.021) lprev=(-10.978,4.278,-0.798) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2157,-0.0847,0.6046) mvmt=(-0.0629,-0.2148,-0.2222) collide=False insertType=0 objState=0x303 winterp=0.2962 return=-1 +[push-back-disp] site=dispatch center=(-0.2407,-0.3247,0.4996) mvmt=(-0.0629,-0.2148,-0.2222) collide=False insertType=0 objState=0x303 winterp=0.2962 return=-1 +[push-back-disp] site=dispatch center=(-0.2407,-2.5359,-0.8504) mvmt=(-0.0629,-0.2148,-0.2222) collide=False insertType=0 objState=0x303 winterp=0.2962 return=-1 +[push-back-disp] site=dispatch center=(-11.0407,4.0634,-1.0006) mvmt=(-0.0629,-0.2148,-0.2222) collide=False insertType=0 objState=0x303 winterp=0.2962 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,3.9667,-1.1207) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.533,92.899) lpos=(-11.099,3.967,-1.121) lprev=(-11.041,4.063,-1.021) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.1814,0.5045) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.4214,0.3995) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.6327,-0.9505) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.9667,-1.1007) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.9667,-1.8707) mvmt=(-0.0586,-0.0967,-0.8501) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.533,92.149) lpos=(-11.099,3.967,-1.871) lprev=(-11.041,4.063,-1.021) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.1814,-0.2455) mvmt=(-0.0586,-0.0967,-0.8501) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.4214,-0.3505) mvmt=(-0.0586,-0.0967,-0.8501) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.4214,-0.3505) out=(-0.2993,-0.4214,0.3995) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9667,-1.1207) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.533,92.899) lpos=(-11.099,3.967,-1.121) lprev=(-11.041,4.063,-1.021) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.1814,0.5045) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.4214,0.3995) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.6327,-0.9505) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.9667,-1.1007) mvmt=(-0.0586,-0.0967,-0.1001) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1592,3.8679,-1.2229) mvmt=(-0.0599,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1592,3.8679,-1.2229) mvmt=(-0.0599,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.659,7.632,92.797) lpos=(-11.159,3.868,-1.223) lprev=(-11.099,3.967,-1.121) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3342,-0.2802,0.4023) mvmt=(-0.0599,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3592,-0.5202,0.2973) mvmt=(-0.0599,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3592,-2.7314,-1.0527) mvmt=(-0.0599,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1592,3.8679,-1.2029) mvmt=(-0.0599,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.659,7.632,92.797) lpos=(-11.159,3.868,-1.223) lprev=(-11.099,3.967,-1.121) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,3.8679,-1.2229) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.632,92.797) lpos=(-11.099,3.868,-1.223) lprev=(-11.099,3.967,-1.121) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.2802,0.4023) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.5202,0.2973) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.7314,-1.0527) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.8679,-1.2029) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.8679,-1.9729) mvmt=(0.0000,-0.0988,-0.8522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.632,92.047) lpos=(-11.099,3.868,-1.973) lprev=(-11.099,3.967,-1.121) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.2802,-0.3477) mvmt=(0.0000,-0.0988,-0.8522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.5202,-0.4527) mvmt=(0.0000,-0.0988,-0.8522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.5202,-0.4527) out=(-0.2993,-0.5202,0.2974) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8679,-1.2228) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.632,92.797) lpos=(-11.099,3.868,-1.223) lprev=(-11.099,3.967,-1.121) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.2802,0.4024) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.5202,0.2974) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.7314,-1.0527) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.8679,-1.2029) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,3.7690,-1.3251) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.731,92.695) lpos=(-11.099,3.769,-1.325) lprev=(-11.099,3.868,-1.223) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.3790,0.3001) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.6190,0.1951) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.8303,-1.1549) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.7690,-1.3051) mvmt=(0.0000,-0.0988,-0.1022) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.7690,-2.0751) mvmt=(0.0000,-0.0988,-0.8522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.731,91.945) lpos=(-11.099,3.769,-2.075) lprev=(-11.099,3.868,-1.223) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.3790,-0.4499) mvmt=(0.0000,-0.0988,-0.8522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.6190,-0.5549) mvmt=(0.0000,-0.0988,-0.8522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.6190,-0.5549) out=(-0.2993,-0.6190,0.1951) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7690,-1.3251) mvmt=(0.0000,-0.0988,-0.1023) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.731,92.695) lpos=(-11.099,3.769,-1.325) lprev=(-11.099,3.868,-1.223) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.3790,0.3001) mvmt=(0.0000,-0.0988,-0.1023) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.6190,0.1951) mvmt=(0.0000,-0.0988,-0.1023) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.8303,-1.1549) mvmt=(0.0000,-0.0988,-0.1023) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.7690,-1.3051) mvmt=(0.0000,-0.0988,-0.1023) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1573,3.6734,-1.4240) mvmt=(-0.0580,-0.0957,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1573,3.6734,-1.4240) mvmt=(-0.0580,-0.0957,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.657,7.827,92.596) lpos=(-11.157,3.673,-1.424) lprev=(-11.099,3.769,-1.325) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3323,-0.4747,0.2011) mvmt=(-0.0580,-0.0957,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3573,-0.7147,0.0962) mvmt=(-0.0580,-0.0957,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3573,-2.9259,-1.2539) mvmt=(-0.0580,-0.0957,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1573,3.6734,-1.4041) mvmt=(-0.0580,-0.0957,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.657,7.827,92.596) lpos=(-11.157,3.673,-1.424) lprev=(-11.099,3.769,-1.325) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,3.6734,-1.4240) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.827,92.596) lpos=(-11.099,3.673,-1.424) lprev=(-11.099,3.769,-1.325) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.4747,0.2011) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.7147,0.0962) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.9259,-1.2539) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.6734,-1.4041) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.6734,-2.1740) mvmt=(0.0000,-0.0956,-0.8489) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.827,91.846) lpos=(-11.099,3.673,-2.174) lprev=(-11.099,3.769,-1.325) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.4747,-0.5489) mvmt=(0.0000,-0.0956,-0.8489) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.7147,-0.6538) mvmt=(0.0000,-0.0956,-0.8489) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.7147,-0.6538) out=(-0.2993,-0.7147,0.0962) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6734,-1.4240) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.827,92.596) lpos=(-11.099,3.673,-1.424) lprev=(-11.099,3.769,-1.325) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.4747,0.2011) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.7147,0.0962) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.9259,-1.2539) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.6734,-1.4041) mvmt=(0.0000,-0.0956,-0.0989) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,3.5767,-1.5240) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.923,92.496) lpos=(-11.099,3.577,-1.524) lprev=(-11.099,3.673,-1.424) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.5713,0.1012) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.8113,-0.0038) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.0226,-1.3538) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.5767,-1.5040) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.5767,-2.2740) mvmt=(0.0000,-0.0967,-0.8500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.923,91.746) lpos=(-11.099,3.577,-2.274) lprev=(-11.099,3.673,-1.424) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.5713,-0.6488) mvmt=(0.0000,-0.0967,-0.8500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.8113,-0.7538) mvmt=(0.0000,-0.0967,-0.8500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.8113,-0.7538) out=(-0.2993,-0.8113,-0.0038) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5767,-1.5240) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.923,92.496) lpos=(-11.099,3.577,-1.524) lprev=(-11.099,3.673,-1.424) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.5713,0.1012) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.8113,-0.0038) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.0226,-1.3538) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.5767,-1.5040) mvmt=(0.0000,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1583,3.4795,-1.6247) mvmt=(-0.0590,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1583,3.4795,-1.6247) mvmt=(-0.0590,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.658,8.021,92.395) lpos=(-11.158,3.479,-1.625) lprev=(-11.099,3.577,-1.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3333,-0.6686,0.0005) mvmt=(-0.0590,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3583,-0.9086,-0.1045) mvmt=(-0.0590,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3583,-3.1199,-1.4545) mvmt=(-0.0590,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1583,3.4795,-1.6047) mvmt=(-0.0590,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.658,8.021,92.395) lpos=(-11.158,3.479,-1.625) lprev=(-11.099,3.577,-1.524) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,3.4794,-1.6247) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.021,92.395) lpos=(-11.099,3.479,-1.625) lprev=(-11.099,3.577,-1.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.6686,0.0005) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.9086,-0.1045) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.1199,-1.4545) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.4794,-1.6047) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.4794,-2.3747) mvmt=(0.0000,-0.0973,-0.8506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.021,91.645) lpos=(-11.099,3.479,-2.375) lprev=(-11.099,3.577,-1.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.6686,-0.7495) mvmt=(0.0000,-0.0973,-0.8506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.9086,-0.8545) mvmt=(0.0000,-0.0973,-0.8506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.9086,-0.8545) out=(-0.2993,-0.9086,-0.1045) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4794,-1.6247) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.021,92.395) lpos=(-11.099,3.479,-1.625) lprev=(-11.099,3.577,-1.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2743,-0.6686,0.0005) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.9086,-0.1045) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.1199,-1.4545) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.4794,-1.6047) mvmt=(0.0000,-0.0973,-0.1006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0549,3.3791,-1.7285) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,8.121,92.291) lpos=(-11.055,3.379,-1.729) lprev=(-11.099,3.479,-1.625) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2299,-0.7690,-0.1033) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-1.0090,-0.2083) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-3.2202,-1.5583) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,3.3791,-1.7085) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,3.3791,-2.4785) mvmt=(0.0444,-0.1004,-0.8538) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,8.121,91.541) lpos=(-11.055,3.379,-2.479) lprev=(-11.099,3.479,-1.625) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2299,-0.7690,-0.8533) mvmt=(0.0444,-0.1004,-0.8538) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-1.0090,-0.9583) mvmt=(0.0444,-0.1004,-0.8538) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2549,-1.0090,-0.9583) out=(-0.2549,-1.0090,-0.2083) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0549,3.3791,-1.7285) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.555,8.121,92.291) lpos=(-11.055,3.379,-1.729) lprev=(-11.099,3.479,-1.625) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2299,-0.7690,-0.1033) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-1.0090,-0.2083) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2549,-3.2202,-1.5583) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0549,3.3791,-1.7085) mvmt=(0.0444,-0.1004,-0.1038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0109,3.2797,-1.8313) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.511,8.220,92.189) lpos=(-11.011,3.280,-1.831) lprev=(-11.055,3.379,-1.729) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1859,-0.8683,-0.2061) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2109,-1.1083,-0.3111) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2109,-3.3196,-1.6611) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0109,3.2797,-1.8113) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0109,3.2797,-2.5813) mvmt=(0.0440,-0.0993,-0.8527) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0109,3.2797,-2.5813) out=(-11.0109,3.2797,-2.5700) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9850 dpPos=0.4687 dpMove=-0.7500 iDist=0.0150 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.511,8.220,91.439) lpos=(-11.011,3.280,-2.581) lprev=(-11.055,3.379,-1.729) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0109,3.2797,-2.5700) mvmt=(0.0440,-0.0993,-0.8415) collide=False insertType=0 objState=0x303 winterp=0.9850 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.511,8.220,91.450) lpos=(-11.011,3.280,-2.570) lprev=(-11.055,3.379,-1.729) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1859,-0.8683,-0.9448) mvmt=(0.0440,-0.0993,-0.8415) collide=False insertType=0 objState=0x303 winterp=0.9850 return=-1 +[push-back-disp] site=dispatch center=(-0.2109,-1.1083,-1.0498) mvmt=(0.0440,-0.0993,-0.8415) collide=False insertType=0 objState=0x303 winterp=0.9850 return=-1 +[push-back] site=adjust_sphere in=(-0.2109,-1.1083,-1.0498) out=(-0.2109,-1.1083,-0.3111) delta=(0.0000,0.0000,0.7387) deltaMag=0.7387 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9850->-0.0000 dpPos=-0.0334 dpMove=-0.5134 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.0109,3.2797,-1.8313) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.511,8.220,92.189) lpos=(-11.011,3.280,-1.831) lprev=(-11.055,3.379,-1.729) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1859,-0.8683,-0.2061) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2109,-1.1083,-0.3111) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2109,-3.3196,-1.6611) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0109,3.2797,-1.8113) mvmt=(0.0440,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9665,3.1794,-1.9351) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,8.321,92.085) lpos=(-10.966,3.179,-1.935) lprev=(-11.011,3.280,-1.831) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1415,-0.9687,-0.3099) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1665,-1.2087,-0.4149) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1665,-3.4200,-1.7649) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9665,3.1794,-1.9151) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9665,3.1794,-2.6851) mvmt=(0.0444,-0.1004,-0.8539) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9665,3.1794,-2.6851) out=(-10.9665,3.1794,-2.5700) delta=(0.0000,0.0000,0.1151) deltaMag=0.1151 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8465 dpPos=0.3649 dpMove=-0.7500 iDist=0.1535 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.466,8.321,91.335) lpos=(-10.966,3.179,-2.685) lprev=(-11.011,3.280,-1.831) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9665,3.1794,-2.5700) mvmt=(0.0444,-0.1004,-0.7387) collide=False insertType=0 objState=0x303 winterp=0.8465 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,8.321,91.450) lpos=(-10.966,3.179,-2.570) lprev=(-11.011,3.280,-1.831) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1415,-0.9687,-0.9448) mvmt=(0.0444,-0.1004,-0.7387) collide=False insertType=0 objState=0x303 winterp=0.8465 return=-1 +[push-back-disp] site=dispatch center=(-0.1665,-1.2087,-1.0498) mvmt=(0.0444,-0.1004,-0.7387) collide=False insertType=0 objState=0x303 winterp=0.8465 return=-1 +[push-back] site=adjust_sphere in=(-0.1665,-1.2087,-1.0498) out=(-0.1665,-1.2087,-0.4149) delta=(0.0000,0.0000,0.6349) deltaMag=0.6349 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.8465->-0.0000 dpPos=0.0387 dpMove=-0.4413 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.9665,3.1794,-1.9351) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.466,8.321,92.085) lpos=(-10.966,3.179,-1.935) lprev=(-11.011,3.280,-1.831) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1415,-0.9687,-0.3099) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1665,-1.2087,-0.4149) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1665,-3.4200,-1.7649) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9665,3.1794,-1.9151) mvmt=(0.0444,-0.1004,-0.1039) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9204,3.0752,-2.0429) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,8.425,91.977) lpos=(-10.920,3.075,-2.043) lprev=(-10.966,3.179,-1.935) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0954,-1.0729,-0.4177) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1204,-1.3129,-0.5227) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1204,-3.5241,-1.8727) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9204,3.0752,-2.0229) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9204,3.0752,-2.7929) mvmt=(0.0461,-0.1042,-0.8578) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9204,3.0752,-2.7929) out=(-10.9204,3.0752,-2.5700) delta=(0.0000,0.0000,0.2229) deltaMag=0.2229 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7028 dpPos=0.2571 dpMove=-0.7500 iDist=0.2972 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.420,8.425,91.227) lpos=(-10.920,3.075,-2.793) lprev=(-10.966,3.179,-1.935) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9204,3.0752,-2.5700) mvmt=(0.0461,-0.1042,-0.6349) collide=False insertType=0 objState=0x303 winterp=0.7028 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,8.425,91.450) lpos=(-10.920,3.075,-2.570) lprev=(-10.966,3.179,-1.935) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0954,-1.0729,-0.9448) mvmt=(0.0461,-0.1042,-0.6349) collide=False insertType=0 objState=0x303 winterp=0.7028 return=-1 +[push-back-disp] site=dispatch center=(-0.1204,-1.3129,-1.0498) mvmt=(0.0461,-0.1042,-0.6349) collide=False insertType=0 objState=0x303 winterp=0.7028 return=-1 +[push-back] site=adjust_sphere in=(-0.1204,-1.3129,-1.0498) out=(-0.1204,-1.3129,-0.5227) delta=(0.0000,0.0000,0.5271) deltaMag=0.5271 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.7028->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.9204,3.0752,-2.0429) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.420,8.425,91.977) lpos=(-10.920,3.075,-2.043) lprev=(-10.966,3.179,-1.935) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0954,-1.0729,-0.4177) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1204,-1.3129,-0.5227) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1204,-3.5241,-1.8727) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9204,3.0752,-2.0229) mvmt=(0.0461,-0.1042,-0.1078) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8747,2.9720,-2.1496) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,8.528,91.870) lpos=(-10.875,2.972,-2.150) lprev=(-10.920,3.075,-2.043) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0497,-1.1761,-0.5244) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0747,-1.4161,-0.6294) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0747,-3.6273,-1.9794) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8747,2.9720,-2.1296) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8747,2.9720,-2.8996) mvmt=(0.0457,-0.1032,-0.8568) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8747,2.9720,-2.8996) out=(-10.8747,2.9720,-2.5700) delta=(0.0000,0.0000,0.3296) deltaMag=0.3296 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.5605 dpPos=0.1504 dpMove=-0.7500 iDist=0.4395 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.375,8.528,91.120) lpos=(-10.875,2.972,-2.900) lprev=(-10.920,3.075,-2.043) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8747,2.9720,-2.5700) mvmt=(0.0457,-0.1032,-0.5271) collide=False insertType=0 objState=0x303 winterp=0.5605 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,8.528,91.450) lpos=(-10.875,2.972,-2.570) lprev=(-10.920,3.075,-2.043) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0497,-1.1761,-0.9448) mvmt=(0.0457,-0.1032,-0.5271) collide=False insertType=0 objState=0x303 winterp=0.5605 return=-1 +[push-back-disp] site=dispatch center=(-0.0747,-1.4161,-1.0498) mvmt=(0.0457,-0.1032,-0.5271) collide=False insertType=0 objState=0x303 winterp=0.5605 return=-1 +[push-back] site=adjust_sphere in=(-0.0747,-1.4161,-1.0498) out=(-0.0747,-1.4161,-0.6294) delta=(0.0000,0.0000,0.4204) deltaMag=0.4204 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.5605->-0.0000 dpPos=0.1878 dpMove=-0.2922 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.8747,2.9720,-2.1496) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,8.528,91.870) lpos=(-10.875,2.972,-2.150) lprev=(-10.920,3.075,-2.043) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0497,-1.1761,-0.5244) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0747,-1.4161,-0.6294) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0747,-3.6273,-1.9794) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8747,2.9720,-2.1296) mvmt=(0.0457,-0.1032,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8279,2.8664,-2.2588) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.328,8.634,91.761) lpos=(-10.828,2.866,-2.259) lprev=(-10.875,2.972,-2.150) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0029,-1.2816,-0.6336) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0279,-1.5216,-0.7386) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0279,-3.7329,-2.0886) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8279,2.8664,-2.2388) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8279,2.8664,-3.0088) mvmt=(0.0467,-0.1056,-0.8592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8279,2.8664,-3.0088) out=(-10.8279,2.8664,-2.5700) delta=(0.0000,0.0000,0.4388) deltaMag=0.4388 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.4149 dpPos=0.0412 dpMove=-0.7500 iDist=0.5851 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.328,8.634,91.011) lpos=(-10.828,2.866,-3.009) lprev=(-10.875,2.972,-2.150) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8279,2.8664,-2.5700) mvmt=(0.0467,-0.1056,-0.4204) collide=False insertType=0 objState=0x303 winterp=0.4149 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.328,8.634,91.450) lpos=(-10.828,2.866,-2.570) lprev=(-10.875,2.972,-2.150) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0029,-1.2816,-0.9448) mvmt=(0.0467,-0.1056,-0.4204) collide=False insertType=0 objState=0x303 winterp=0.4149 return=-1 +[push-back-disp] site=dispatch center=(-0.0279,-1.5216,-1.0498) mvmt=(0.0467,-0.1056,-0.4204) collide=False insertType=0 objState=0x303 winterp=0.4149 return=-1 +[push-back] site=adjust_sphere in=(-0.0279,-1.5216,-1.0498) out=(-0.0279,-1.5216,-0.7386) delta=(0.0000,0.0000,0.3112) deltaMag=0.3112 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4149->0.0000 dpPos=0.2637 dpMove=-0.2163 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.8279,2.8664,-2.2588) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.328,8.634,91.761) lpos=(-10.828,2.866,-2.259) lprev=(-10.875,2.972,-2.150) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0029,-1.2816,-0.6336) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0279,-1.5216,-0.7386) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0279,-3.7329,-2.0886) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8279,2.8664,-2.2388) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7832,2.7654,-2.3634) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.283,8.735,91.657) lpos=(-10.783,2.765,-2.363) lprev=(-10.828,2.866,-2.259) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9582,-1.3827,-0.7382) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0168,-1.6227,-0.8432) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7832,2.7654,-2.3434) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7832,2.7654,-3.1134) mvmt=(0.0447,-0.1011,-0.8545) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7832,2.7654,-3.1134) out=(-10.7832,2.7654,-2.5700) delta=(0.0000,0.0000,0.5434) deltaMag=0.5434 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.2755 dpPos=-0.0634 dpMove=-0.7500 iDist=0.7245 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.283,8.735,90.907) lpos=(-10.783,2.765,-3.113) lprev=(-10.828,2.866,-2.259) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7832,2.7654,-2.5700) mvmt=(0.0447,-0.1011,-0.3112) collide=False insertType=0 objState=0x303 winterp=0.2755 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.283,8.735,91.450) lpos=(-10.783,2.765,-2.570) lprev=(-10.828,2.866,-2.259) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9582,-1.3827,-0.9448) mvmt=(0.0447,-0.1011,-0.3112) collide=False insertType=0 objState=0x303 winterp=0.2755 return=-1 +[push-back-disp] site=dispatch center=(0.0168,-1.6227,-1.0498) mvmt=(0.0447,-0.1011,-0.3112) collide=False insertType=0 objState=0x303 winterp=0.2755 return=-1 +[push-back] site=adjust_sphere in=(0.0168,-1.6227,-1.0498) out=(0.0168,-1.6227,-0.8432) delta=(0.0000,0.0000,0.2066) deltaMag=0.2066 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2755->-0.0000 dpPos=0.3364 dpMove=-0.1436 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.7832,2.7654,-2.3634) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.283,8.735,91.657) lpos=(-10.783,2.765,-2.363) lprev=(-10.828,2.866,-2.259) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9582,-1.3827,-0.7382) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0168,-1.6227,-0.8432) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7832,2.7654,-2.3434) mvmt=(0.0447,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7352,2.6568,-2.4757) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,8.843,91.544) lpos=(-10.735,2.657,-2.476) lprev=(-10.783,2.765,-2.363) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9102,-1.4912,-0.8505) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-1.7312,-0.9555) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7352,2.6568,-2.4557) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7352,2.6568,-3.2257) mvmt=(0.0480,-0.1085,-0.8623) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7352,2.6568,-3.2257) out=(-10.7352,2.6568,-2.5700) delta=(0.0000,0.0000,0.6557) deltaMag=0.6557 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1258 dpPos=-0.1757 dpMove=-0.7500 iDist=0.8742 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.235,8.843,90.794) lpos=(-10.735,2.657,-3.226) lprev=(-10.783,2.765,-2.363) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7352,2.6568,-2.5700) mvmt=(0.0480,-0.1085,-0.2066) collide=False insertType=0 objState=0x303 winterp=0.1258 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,8.843,91.450) lpos=(-10.735,2.657,-2.570) lprev=(-10.783,2.765,-2.363) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9102,-1.4912,-0.9448) mvmt=(0.0480,-0.1085,-0.2066) collide=False insertType=0 objState=0x303 winterp=0.1258 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-1.7312,-1.0498) mvmt=(0.0480,-0.1085,-0.2066) collide=False insertType=0 objState=0x303 winterp=0.1258 return=-1 +[push-back] site=adjust_sphere in=(0.0649,-1.7312,-1.0498) out=(0.0649,-1.7312,-0.9555) delta=(0.0000,0.0000,0.0943) deltaMag=0.0943 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1258->-0.0000 dpPos=0.4144 dpMove=-0.0656 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.7352,2.6568,-2.4757) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.235,8.843,91.544) lpos=(-10.735,2.657,-2.476) lprev=(-10.783,2.765,-2.363) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9102,-1.4912,-0.8505) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0649,-1.7312,-0.9555) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7352,2.6568,-2.4557) mvmt=(0.0480,-0.1085,-0.1123) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6884,2.5513,-2.5849) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6884,2.5513,-2.5849) mvmt=(0.0467,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6884,2.5513,-2.5849) out=(-10.6884,2.5513,-2.5700) delta=(0.0000,0.0000,0.0149) deltaMag=0.0149 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9752 dpPos=0.4651 dpMove=-0.6000 iDist=0.0248 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.188,8.949,91.435) lpos=(-10.688,2.551,-2.585) lprev=(-10.735,2.657,-2.476) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6884,2.5513,-2.5700) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=0 objState=0x303 winterp=0.9752 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,8.949,91.450) lpos=(-10.688,2.551,-2.570) lprev=(-10.735,2.657,-2.476) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8634,-1.5968,-0.9448) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=0 objState=0x303 winterp=0.9752 return=-1 +[push-back-disp] site=dispatch center=(0.1116,-1.8368,-1.0498) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=0 objState=0x303 winterp=0.9752 return=-1 +[push-back-disp] site=dispatch center=(-10.6884,2.5513,-2.5500) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=0 objState=0x303 winterp=0.9752 return=-1 +[push-back-disp] site=dispatch center=(-10.6884,2.5513,-2.5700) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=1 objState=0x303 winterp=0.9752 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,8.949,91.450) lpos=(-10.688,2.551,-2.570) lprev=(-10.735,2.657,-2.476) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8634,-1.5968,-0.9448) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=1 objState=0x303 winterp=0.9752 return=-1 +[push-back-disp] site=dispatch center=(0.1116,-1.8368,-1.0498) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=1 objState=0x303 winterp=0.9752 return=-1 +[push-back-disp] site=dispatch center=(-10.6884,2.5513,-2.5500) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=1 objState=0x303 winterp=0.9752 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,8.949,91.435) lpos=(-10.688,2.551,-2.585) lprev=(-10.735,2.657,-2.476) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8634,-1.5968,-0.9448) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=0 objState=0x303 winterp=0.9752 return=-1 +[push-back-disp] site=dispatch center=(0.1116,-1.8368,-1.0498) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=0 objState=0x303 winterp=0.9752 return=-1 +[push-back-disp] site=dispatch center=(-10.6884,2.5513,-2.5500) mvmt=(0.0467,-0.1056,-0.0943) collide=False insertType=0 objState=0x303 winterp=0.9752 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6414,2.3314,-2.5700) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.141,9.169,91.450) lpos=(-10.641,2.331,-2.570) lprev=(-10.688,2.551,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8164,-1.8167,-0.9448) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1586,-2.0567,-1.0498) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6414,2.3314,-2.5500) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6414,2.3314,-3.3200) mvmt=(0.0470,-0.2199,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6414,2.3314,-3.3200) out=(-10.6414,2.3314,-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.141,9.169,90.700) lpos=(-10.641,2.331,-3.320) lprev=(-10.688,2.551,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6414,2.3314,-2.5700) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.141,9.169,91.450) lpos=(-10.641,2.331,-2.570) lprev=(-10.688,2.551,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8164,-1.8167,-0.9448) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1586,-2.0567,-1.0498) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6414,2.3314,-2.5500) mvmt=(0.0470,-0.2199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5991,2.1336,-2.5700) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.099,9.366,91.450) lpos=(-10.599,2.134,-2.570) lprev=(-10.641,2.331,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7741,-2.0145,-0.9448) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2009,-2.2545,-1.0498) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5991,2.1336,-2.5500) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5991,2.1336,-3.3200) mvmt=(0.0423,-0.1978,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.5991,2.1336,-3.3200) out=(-10.5991,2.1336,-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.099,9.366,90.700) lpos=(-10.599,2.134,-3.320) lprev=(-10.641,2.331,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.5991,2.1336,-2.5700) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.099,9.366,91.450) lpos=(-10.599,2.134,-2.570) lprev=(-10.641,2.331,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7741,-2.0145,-0.9448) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2009,-2.2545,-1.0498) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5991,2.1336,-2.5500) mvmt=(0.0423,-0.1978,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5524,1.9153,-2.5700) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,9.585,91.450) lpos=(-10.552,1.915,-2.570) lprev=(-10.599,2.134,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7274,-2.2328,-0.9448) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2476,-2.4728,-1.0498) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5524,1.9153,-2.5500) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5524,1.9153,-3.3200) mvmt=(0.0467,-0.2183,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.5524,1.9153,-3.3200) out=(-10.5524,1.9153,-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.052,9.585,90.700) lpos=(-10.552,1.915,-3.320) lprev=(-10.599,2.134,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.5524,1.9153,-2.5700) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,9.585,91.450) lpos=(-10.552,1.915,-2.570) lprev=(-10.599,2.134,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7274,-2.2328,-0.9448) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2476,-2.4728,-1.0498) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5524,1.9153,-2.5500) mvmt=(0.0467,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5075,1.7053,-2.5700) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.008,9.795,91.450) lpos=(-10.508,1.705,-2.570) lprev=(-10.552,1.915,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6825,-2.4427,-0.9448) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2925,-2.6827,-1.0498) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5075,1.7053,-2.5500) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5075,1.7053,-3.3200) mvmt=(0.0449,-0.2100,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.5075,1.7053,-3.3200) out=(-10.5075,1.7053,-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.008,9.795,90.700) lpos=(-10.508,1.705,-3.320) lprev=(-10.552,1.915,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.5075,1.7053,-2.5700) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.008,9.795,91.450) lpos=(-10.508,1.705,-2.570) lprev=(-10.552,1.915,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6825,-2.4427,-0.9448) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2925,-2.6827,-1.0498) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5075,1.7053,-2.5500) mvmt=(0.0449,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4629,1.4966,-2.5700) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,10.003,91.450) lpos=(-10.463,1.497,-2.570) lprev=(-10.508,1.705,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6379,-2.6514,-0.9448) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3371,-2.8914,-1.0498) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4629,1.4966,-2.5500) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4629,1.4966,-3.3200) mvmt=(0.0446,-0.2087,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.4629,1.4966,-3.3200) out=(-10.4629,1.4966,-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=(140.963,10.003,90.700) lpos=(-10.463,1.497,-3.320) lprev=(-10.508,1.705,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.4629,1.4966,-2.5700) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.963,10.003,91.450) lpos=(-10.463,1.497,-2.570) lprev=(-10.508,1.705,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6379,-2.6514,-0.9448) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3371,-2.8914,-1.0498) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4629,1.4966,-2.5500) mvmt=(0.0446,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4174,1.2838,-2.5700) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,10.216,91.450) lpos=(-10.417,1.284,-2.570) lprev=(-10.463,1.497,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5924,-2.8642,-0.9448) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3826,-3.1042,-1.0498) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4174,1.2838,-2.5500) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4174,1.2838,-3.3200) mvmt=(0.0455,-0.2128,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.4174,1.2838,-3.3200) out=(-10.4174,1.2838,-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=(140.917,10.216,90.700) lpos=(-10.417,1.284,-3.320) lprev=(-10.463,1.497,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.4174,1.2838,-2.5700) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,10.216,91.450) lpos=(-10.417,1.284,-2.570) lprev=(-10.463,1.497,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5924,-2.8642,-0.9448) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3826,-3.1042,-1.0498) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4174,1.2838,-2.5500) mvmt=(0.0455,-0.2128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3726,1.0746,-2.5700) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.873,10.425,91.450) lpos=(-10.373,1.075,-2.570) lprev=(-10.417,1.284,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5476,-3.0735,-0.9448) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4274,-3.3135,-1.0498) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3726,1.0746,-2.5500) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3726,1.0746,-3.3200) mvmt=(0.0447,-0.2092,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.3726,1.0746,-3.3200) out=(-10.3726,1.0746,-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=(140.873,10.425,90.700) lpos=(-10.373,1.075,-3.320) lprev=(-10.417,1.284,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.3726,1.0746,-2.5700) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.873,10.425,91.450) lpos=(-10.373,1.075,-2.570) lprev=(-10.417,1.284,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5476,-3.0735,-0.9448) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4274,-3.3135,-1.0498) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3726,1.0746,-2.5500) mvmt=(0.0447,-0.2092,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3270,0.8611,-2.5700) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.827,10.639,91.450) lpos=(-10.327,0.861,-2.570) lprev=(-10.373,1.075,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5020,-3.2870,-0.9448) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4730,-3.5270,-1.0498) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3270,0.8611,-2.5500) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3270,0.8611,-3.3200) mvmt=(0.0457,-0.2135,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.3270,0.8611,-3.3200) out=(-10.3270,0.8611,-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=(140.827,10.639,90.700) lpos=(-10.327,0.861,-3.320) lprev=(-10.373,1.075,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.3270,0.8611,-2.5700) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.827,10.639,91.450) lpos=(-10.327,0.861,-2.570) lprev=(-10.373,1.075,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5020,-3.2870,-0.9448) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4730,-3.5270,-1.0498) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3270,0.8611,-2.5500) mvmt=(0.0457,-0.2135,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2820,0.6506,-2.5700) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.782,10.849,91.450) lpos=(-10.282,0.651,-2.570) lprev=(-10.327,0.861,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4570,-3.4975,-0.9448) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5181,-3.7375,-1.0498) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2820,0.6506,-2.5500) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2820,0.6506,-3.3200) mvmt=(0.0450,-0.2105,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2820,0.6506,-3.3200) out=(-10.2820,0.6506,-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=(140.782,10.849,90.700) lpos=(-10.282,0.651,-3.320) lprev=(-10.327,0.861,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.2820,0.6506,-2.5700) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.782,10.849,91.450) lpos=(-10.282,0.651,-2.570) lprev=(-10.327,0.861,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4570,-3.4975,-0.9448) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5181,-3.7375,-1.0498) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2820,0.6506,-2.5500) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2395,0.4520,-2.5700) mvmt=(0.0425,-0.1986,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2395,0.4520,-2.5700) mvmt=(0.0425,-0.1986,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.739,11.048,91.450) lpos=(-10.239,0.452,-2.570) lprev=(-10.282,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4145,-3.6961,-0.9448) mvmt=(0.0425,-0.1986,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5605,-3.9361,-1.0498) mvmt=(0.0425,-0.1986,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2395,0.4520,-2.5500) mvmt=(0.0425,-0.1986,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.739,11.048,91.450) lpos=(-10.239,0.452,-2.570) lprev=(-10.282,0.651,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2395,0.6506,-2.5700) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.739,10.849,91.450) lpos=(-10.239,0.651,-2.570) lprev=(-10.282,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4145,-3.4975,-0.9448) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5605,-3.7375,-1.0498) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2395,0.6506,-2.5500) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2395,0.6506,-3.3200) mvmt=(0.0425,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2395,0.6506,-3.3200) out=(-10.2395,0.6506,-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=(140.739,10.849,90.700) lpos=(-10.239,0.651,-3.320) lprev=(-10.282,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.2395,0.6506,-2.5700) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.739,10.849,91.450) lpos=(-10.239,0.651,-2.570) lprev=(-10.282,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4145,-3.4975,-0.9448) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5605,-3.7375,-1.0498) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2395,0.6506,-2.5500) mvmt=(0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1933,0.6506,-2.5700) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.693,10.849,91.450) lpos=(-10.193,0.651,-2.570) lprev=(-10.239,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3683,-3.4975,-0.9448) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6067,-3.7375,-1.0498) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1933,0.6506,-2.5500) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1933,0.6506,-3.3200) mvmt=(0.0462,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1933,0.6506,-3.3200) out=(-10.1933,0.6506,-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=(140.693,10.849,90.700) lpos=(-10.193,0.651,-3.320) lprev=(-10.239,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1933,0.6506,-2.5700) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.693,10.849,91.450) lpos=(-10.193,0.651,-2.570) lprev=(-10.239,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3683,-3.4975,-0.9448) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6067,-3.7375,-1.0498) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1933,0.6506,-2.5500) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1487,0.4416,-2.5700) mvmt=(0.0447,-0.2090,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1487,0.4416,-2.5700) mvmt=(0.0447,-0.2090,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.649,11.058,91.450) lpos=(-10.149,0.442,-2.570) lprev=(-10.193,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3237,-3.7064,-0.9448) mvmt=(0.0447,-0.2090,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6514,-3.9464,-1.0498) mvmt=(0.0447,-0.2090,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1487,0.4416,-2.5500) mvmt=(0.0447,-0.2090,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.649,11.058,91.450) lpos=(-10.149,0.442,-2.570) lprev=(-10.193,0.651,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.1487,0.6506,-2.5700) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.649,10.849,91.450) lpos=(-10.149,0.651,-2.570) lprev=(-10.193,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3237,-3.4975,-0.9448) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6514,-3.7375,-1.0498) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1487,0.6506,-2.5500) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1487,0.6506,-3.3200) mvmt=(0.0447,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1487,0.6506,-3.3200) out=(-10.1487,0.6506,-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=(140.649,10.849,90.700) lpos=(-10.149,0.651,-3.320) lprev=(-10.193,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1487,0.6506,-2.5700) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.649,10.849,91.450) lpos=(-10.149,0.651,-2.570) lprev=(-10.193,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3237,-3.4975,-0.9448) 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.6514,-3.7375,-1.0498) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1487,0.6506,-2.5500) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1040,0.6506,-2.5700) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.604,10.849,91.450) lpos=(-10.104,0.651,-2.570) lprev=(-10.149,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2790,-3.4975,-0.9448) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6960,-3.7375,-1.0498) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1040,0.6506,-2.5500) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1040,0.6506,-3.3200) mvmt=(0.0447,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1040,0.6506,-3.3200) out=(-10.1040,0.6506,-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=(140.604,10.849,90.700) lpos=(-10.104,0.651,-3.320) lprev=(-10.149,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1040,0.6506,-2.5700) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.604,10.849,91.450) lpos=(-10.104,0.651,-2.570) lprev=(-10.149,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2790,-3.4975,-0.9448) 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.6960,-3.7375,-1.0498) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1040,0.6506,-2.5500) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0589,0.4396,-2.5700) mvmt=(0.0451,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0589,0.4396,-2.5700) mvmt=(0.0451,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.559,11.060,91.450) lpos=(-10.059,0.440,-2.570) lprev=(-10.104,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2339,-3.7085,-0.9448) mvmt=(0.0451,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7411,-3.9485,-1.0498) mvmt=(0.0451,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0589,0.4396,-2.5500) mvmt=(0.0451,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.559,11.060,91.450) lpos=(-10.059,0.440,-2.570) lprev=(-10.104,0.651,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.0589,0.6506,-2.5700) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.559,10.849,91.450) lpos=(-10.059,0.651,-2.570) lprev=(-10.104,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2339,-3.4975,-0.9448) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7411,-3.7375,-1.0498) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0589,0.6506,-2.5500) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0589,0.6506,-3.3200) mvmt=(0.0451,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.0589,0.6506,-3.3200) out=(-10.0589,0.6506,-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=(140.559,10.849,90.700) lpos=(-10.059,0.651,-3.320) lprev=(-10.104,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.0589,0.6506,-2.5700) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.559,10.849,91.450) lpos=(-10.059,0.651,-2.570) lprev=(-10.104,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2339,-3.4975,-0.9448) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7411,-3.7375,-1.0498) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0589,0.6506,-2.5500) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0140,0.6506,-2.5700) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.514,10.849,91.450) lpos=(-10.014,0.651,-2.570) lprev=(-10.059,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1890,-3.4975,-0.9448) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7860,-3.7375,-1.0498) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0140,0.6506,-2.5500) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0140,0.6506,-3.3200) mvmt=(0.0449,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.0140,0.6506,-3.3200) out=(-10.0140,0.6506,-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=(140.514,10.849,90.700) lpos=(-10.014,0.651,-3.320) lprev=(-10.059,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.0140,0.6506,-2.5700) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.514,10.849,91.450) lpos=(-10.014,0.651,-2.570) lprev=(-10.059,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1890,-3.4975,-0.9448) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7860,-3.7375,-1.0498) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0140,0.6506,-2.5500) mvmt=(0.0449,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.9696,0.4430,-2.5700) mvmt=(0.0444,-0.2076,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9696,0.4430,-2.5700) mvmt=(0.0444,-0.2076,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.470,11.057,91.450) lpos=(-9.970,0.443,-2.570) lprev=(-10.014,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1446,-3.7051,-0.9448) mvmt=(0.0444,-0.2076,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8304,-3.9451,-1.0498) mvmt=(0.0444,-0.2076,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9696,0.4430,-2.5500) mvmt=(0.0444,-0.2076,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.470,11.057,91.450) lpos=(-9.970,0.443,-2.570) lprev=(-10.014,0.651,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-9.9696,0.6506,-2.5700) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.470,10.849,91.450) lpos=(-9.970,0.651,-2.570) lprev=(-10.014,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1446,-3.4975,-0.9448) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8304,-3.7375,-1.0498) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9696,0.6506,-2.5500) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9696,0.6506,-3.3200) mvmt=(0.0444,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.9696,0.6506,-3.3200) out=(-9.9696,0.6506,-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=(140.470,10.849,90.700) lpos=(-9.970,0.651,-3.320) lprev=(-10.014,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.9696,0.6506,-2.5700) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.470,10.849,91.450) lpos=(-9.970,0.651,-2.570) lprev=(-10.014,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1446,-3.4975,-0.9448) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8304,-3.7375,-1.0498) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9696,0.6506,-2.5500) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.9252,0.6506,-2.5700) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.425,10.849,91.450) lpos=(-9.925,0.651,-2.570) lprev=(-9.970,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1002,-3.4975,-0.9448) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8748,-3.7375,-1.0498) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9252,0.6506,-2.5500) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9252,0.6506,-3.3200) mvmt=(0.0444,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.9252,0.6506,-3.3200) out=(-9.9252,0.6506,-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=(140.425,10.849,90.700) lpos=(-9.925,0.651,-3.320) lprev=(-9.970,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.9252,0.6506,-2.5700) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.425,10.849,91.450) lpos=(-9.925,0.651,-2.570) lprev=(-9.970,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1002,-3.4975,-0.9448) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8748,-3.7375,-1.0498) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9252,0.6506,-2.5500) mvmt=(0.0444,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.8802,0.4401,-2.5700) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8802,0.4401,-2.5700) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.380,11.060,91.450) lpos=(-9.880,0.440,-2.570) lprev=(-9.925,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0552,-3.7080,-0.9448) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9198,-3.9480,-1.0498) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8802,0.4401,-2.5500) mvmt=(0.0450,-0.2105,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.380,11.060,91.450) lpos=(-9.880,0.440,-2.570) lprev=(-9.925,0.651,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-9.8802,0.6506,-2.5700) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.380,10.849,91.450) lpos=(-9.880,0.651,-2.570) lprev=(-9.925,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0552,-3.4975,-0.9448) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9198,-3.7375,-1.0498) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8802,0.6506,-2.5500) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8802,0.6506,-3.3200) mvmt=(0.0450,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.8802,0.6506,-3.3200) out=(-9.8802,0.6506,-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=(140.380,10.849,90.700) lpos=(-9.880,0.651,-3.320) lprev=(-9.925,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.8802,0.6506,-2.5700) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.380,10.849,91.450) lpos=(-9.880,0.651,-2.570) lprev=(-9.925,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0552,-3.4975,-0.9448) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9198,-3.7375,-1.0498) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8802,0.6506,-2.5500) mvmt=(0.0450,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.8380,0.6506,-2.5700) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.338,10.849,91.450) lpos=(-9.838,0.651,-2.570) lprev=(-9.880,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0130,-3.4975,-0.9448) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9620,-3.7375,-1.0498) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8380,0.6506,-2.5500) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8380,0.6506,-3.3200) mvmt=(0.0422,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.8380,0.6506,-3.3200) out=(-9.8380,0.6506,-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=(140.338,10.849,90.700) lpos=(-9.838,0.651,-3.320) lprev=(-9.880,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.8380,0.6506,-2.5700) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.338,10.849,91.450) lpos=(-9.838,0.651,-2.570) lprev=(-9.880,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0130,-3.4975,-0.9448) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9620,-3.7375,-1.0498) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8380,0.6506,-2.5500) mvmt=(0.0422,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.7950,0.4498,-2.5700) mvmt=(0.0429,-0.2007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7950,0.4498,-2.5700) mvmt=(0.0429,-0.2007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.295,11.050,91.450) lpos=(-9.795,0.450,-2.570) lprev=(-9.838,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0300,-3.6982,-0.9448) mvmt=(0.0429,-0.2007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0050,-3.9382,-1.0498) mvmt=(0.0429,-0.2007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7950,0.4498,-2.5500) mvmt=(0.0429,-0.2007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.295,11.050,91.450) lpos=(-9.795,0.450,-2.570) lprev=(-9.838,0.651,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-9.7950,0.6506,-2.5700) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.295,10.849,91.450) lpos=(-9.795,0.651,-2.570) lprev=(-9.838,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0300,-3.4975,-0.9448) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0050,-3.7375,-1.0498) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7950,0.6506,-2.5500) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7950,0.6506,-3.3200) mvmt=(0.0429,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.7950,0.6506,-3.3200) out=(-9.7950,0.6506,-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=(140.295,10.849,90.700) lpos=(-9.795,0.651,-3.320) lprev=(-9.838,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.7950,0.6506,-2.5700) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.295,10.849,91.450) lpos=(-9.795,0.651,-2.570) lprev=(-9.838,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0300,-3.4975,-0.9448) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0050,-3.7375,-1.0498) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7950,0.6506,-2.5500) mvmt=(0.0429,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.7491,0.6506,-2.5700) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.249,10.849,91.450) lpos=(-9.749,0.651,-2.570) lprev=(-9.795,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0759,-3.4975,-0.9448) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0509,-3.7375,-1.0498) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7491,0.6506,-2.5500) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7491,0.6506,-3.3200) mvmt=(0.0460,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.7491,0.6506,-3.3200) out=(-9.7491,0.6506,-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=(140.249,10.849,90.700) lpos=(-9.749,0.651,-3.320) lprev=(-9.795,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.7491,0.6506,-2.5700) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.249,10.849,91.450) lpos=(-9.749,0.651,-2.570) lprev=(-9.795,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0759,-3.4975,-0.9448) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0509,-3.7375,-1.0498) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7491,0.6506,-2.5500) mvmt=(0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.7031,0.4357,-2.5700) mvmt=(0.0459,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7031,0.4357,-2.5700) mvmt=(0.0459,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.203,11.064,91.450) lpos=(-9.703,0.436,-2.570) lprev=(-9.749,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1219,-3.7123,-0.9448) mvmt=(0.0459,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0969,-3.9523,-1.0498) mvmt=(0.0459,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7031,0.4357,-2.5500) mvmt=(0.0459,-0.2148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.203,11.064,91.450) lpos=(-9.703,0.436,-2.570) lprev=(-9.749,0.651,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-9.7031,0.6506,-2.5700) mvmt=(0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.203,10.849,91.450) lpos=(-9.703,0.651,-2.570) lprev=(-9.749,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1219,-3.4975,-0.9448) mvmt=(0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0969,-3.7375,-1.0498) mvmt=(0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7031,0.6506,-2.5500) mvmt=(0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7031,0.6506,-3.3200) mvmt=(0.0459,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.7031,0.6506,-3.3200) out=(-9.7031,0.6506,-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=(140.203,10.849,90.700) lpos=(-9.703,0.651,-3.320) lprev=(-9.749,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.7031,0.6506,-2.5700) mvmt=(0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.203,10.849,91.450) lpos=(-9.703,0.651,-2.570) lprev=(-9.749,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1219,-3.4975,-0.9448) mvmt=(0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0969,-3.7375,-1.0498) mvmt=(0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7031,0.6506,-2.5500) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.6566,0.6506,-2.5700) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.157,10.849,91.450) lpos=(-9.657,0.651,-2.570) lprev=(-9.703,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1684,-3.4975,-0.9448) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1434,-3.7375,-1.0498) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6566,0.6506,-2.5500) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6566,0.6506,-3.3200) mvmt=(0.0465,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.6566,0.6506,-3.3200) out=(-9.6566,0.6506,-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=(140.157,10.849,90.700) lpos=(-9.657,0.651,-3.320) lprev=(-9.703,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.6566,0.6506,-2.5700) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.157,10.849,91.450) lpos=(-9.657,0.651,-2.570) lprev=(-9.703,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1684,-3.4975,-0.9448) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1434,-3.7375,-1.0498) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6566,0.6506,-2.5500) mvmt=(0.0465,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.8541,1.0164,-2.5700) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.354,10.484,91.450) lpos=(-9.854,1.016,-2.570) lprev=(-9.657,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0291,-3.1316,-0.9448) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9459,-3.3716,-1.0498) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8541,1.0164,-2.5500) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8541,1.0164,-3.3200) mvmt=(-0.1974,0.3659,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.8541,1.0164,-3.3200) out=(-9.8541,1.0164,-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=(140.354,10.484,90.700) lpos=(-9.854,1.016,-3.320) lprev=(-9.657,0.651,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.8541,1.0164,-2.5700) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.354,10.484,91.450) lpos=(-9.854,1.016,-2.570) lprev=(-9.657,0.651,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0291,-3.1316,-0.9448) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9459,-3.3716,-1.0498) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8541,1.0164,-2.5500) mvmt=(-0.1974,0.3659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0157,1.3830,-2.5700) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.516,10.117,91.450) lpos=(-10.016,1.383,-2.570) lprev=(-9.854,1.016,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1907,-2.7651,-0.9448) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7843,-3.0051,-1.0498) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0157,1.3830,-2.5500) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0157,1.3830,-3.3200) mvmt=(-0.1616,0.3666,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.0157,1.3830,-3.3200) out=(-10.0157,1.3830,-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=(140.516,10.117,90.700) lpos=(-10.016,1.383,-3.320) lprev=(-9.854,1.016,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.0157,1.3830,-2.5700) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.516,10.117,91.450) lpos=(-10.016,1.383,-2.570) lprev=(-9.854,1.016,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1907,-2.7651,-0.9448) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7843,-3.0051,-1.0498) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0157,1.3830,-2.5500) mvmt=(-0.1616,0.3666,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1493,1.7680,-2.5700) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.649,9.732,91.450) lpos=(-10.149,1.768,-2.570) lprev=(-10.016,1.383,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3243,-2.3800,-0.9448) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6507,-2.6200,-1.0498) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1493,1.7680,-2.5500) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1493,1.7680,-3.3200) mvmt=(-0.1337,0.3850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.1493,1.7680,-3.3200) out=(-10.1493,1.7680,-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=(140.649,9.732,90.700) lpos=(-10.149,1.768,-3.320) lprev=(-10.016,1.383,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.1493,1.7680,-2.5700) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.649,9.732,91.450) lpos=(-10.149,1.768,-2.570) lprev=(-10.016,1.383,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3243,-2.3800,-0.9448) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6507,-2.6200,-1.0498) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1493,1.7680,-2.5500) mvmt=(-0.1337,0.3850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2511,2.1607,-2.5700) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.751,9.339,91.450) lpos=(-10.251,2.161,-2.570) lprev=(-10.149,1.768,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4261,-1.9874,-0.9448) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5490,-2.2274,-1.0498) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2511,2.1607,-2.5500) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2511,2.1607,-3.3200) mvmt=(-0.1017,0.3927,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2511,2.1607,-3.3200) out=(-10.2511,2.1607,-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=(140.751,9.339,90.700) lpos=(-10.251,2.161,-3.320) lprev=(-10.149,1.768,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.2511,2.1607,-2.5700) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.751,9.339,91.450) lpos=(-10.251,2.161,-2.570) lprev=(-10.149,1.768,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4261,-1.9874,-0.9448) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5490,-2.2274,-1.0498) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2511,2.1607,-2.5500) mvmt=(-0.1017,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3547,2.5823,-2.5700) mvmt=(-0.1037,0.4216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,8.918,91.450) lpos=(-10.355,2.582,-2.570) lprev=(-10.251,2.161,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5297,-1.5658,-0.9448) mvmt=(-0.1037,0.4216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3547,2.5823,-2.5700) mvmt=(-0.1037,0.4216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,8.918,91.450) lpos=(-10.355,2.582,-2.570) lprev=(-10.251,2.161,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5297,-1.5658,-0.9448) mvmt=(-0.1037,0.4216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5297,-1.5658,-0.9448) out=(-0.5297,-1.5658,-0.5369) delta=(0.0000,0.0000,0.4079) deltaMag=0.4079 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3202 dpPos=0.1916 dpMove=-0.4243 iDist=0.6798 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=(-10.3547,2.5823,-2.1621) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=0 objState=0x303 winterp=0.3202 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,8.918,91.858) lpos=(-10.355,2.582,-2.162) lprev=(-10.251,2.161,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5297,-1.5658,-0.5369) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=0 objState=0x303 winterp=0.3202 return=-1 +[push-back-disp] site=dispatch center=(0.4453,-1.8058,-0.6419) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=0 objState=0x303 winterp=0.3202 return=-1 +[push-back-disp] site=dispatch center=(-10.3547,2.5823,-2.1421) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=0 objState=0x303 winterp=0.3202 return=-1 +[push-back-disp] site=dispatch center=(-10.3547,2.5823,-2.1621) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=1 objState=0x303 winterp=0.3202 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,8.918,91.858) lpos=(-10.355,2.582,-2.162) lprev=(-10.251,2.161,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5297,-1.5658,-0.5369) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=1 objState=0x303 winterp=0.3202 return=-1 +[push-back-disp] site=dispatch center=(0.4453,-1.8058,-0.6419) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=1 objState=0x303 winterp=0.3202 return=-1 +[push-back-disp] site=dispatch center=(-10.3547,2.5823,-2.1421) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=1 objState=0x303 winterp=0.3202 return=-1 +[push-back-disp] site=dispatch center=(0.4453,-1.8058,-0.6419) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=0 objState=0x303 winterp=0.3202 return=-1 +[push-back-disp] site=dispatch center=(-10.3547,2.5823,-2.1421) mvmt=(-0.1037,0.4216,0.4079) collide=False insertType=0 objState=0x303 winterp=0.3202 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4579,2.7919,-1.9525) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.958,8.708,92.068) lpos=(-10.458,2.792,-1.952) lprev=(-10.355,2.582,-2.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6329,-1.3561,-0.3273) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3421,-1.5961,-0.4323) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4579,2.7919,-1.9325) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4579,2.7919,-2.7025) mvmt=(-0.1031,0.2097,-0.5403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.4579,2.7919,-2.7025) out=(-10.4579,2.7919,-2.5700) delta=(0.0000,0.0000,0.1325) deltaMag=0.1325 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8234 dpPos=0.3475 dpMove=-0.7500 iDist=0.1766 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.958,8.708,91.318) lpos=(-10.458,2.792,-2.702) lprev=(-10.355,2.582,-2.162) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.4579,2.7919,-2.5700) mvmt=(-0.1031,0.2097,-0.4079) collide=False insertType=0 objState=0x303 winterp=0.8234 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.958,8.708,91.450) lpos=(-10.458,2.792,-2.570) lprev=(-10.355,2.582,-2.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6329,-1.3561,-0.9448) mvmt=(-0.1031,0.2097,-0.4079) collide=False insertType=0 objState=0x303 winterp=0.8234 return=-1 +[push-back] site=adjust_sphere in=(-0.6329,-1.3561,-0.9448) out=(-0.6329,-1.3561,-0.3273) delta=(0.0000,0.0000,0.6175) deltaMag=0.6175 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.8234->0.0000 dpPos=0.0434 dpMove=-0.4366 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=(-10.4579,2.7919,-1.9525) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.958,8.708,92.068) lpos=(-10.458,2.792,-1.952) lprev=(-10.355,2.582,-2.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6329,-1.3561,-0.3273) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3421,-1.5961,-0.4323) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4579,2.7919,-1.9325) mvmt=(-0.1031,0.2097,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5208,2.9199,-1.8245) mvmt=(-0.0629,0.1279,0.1279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.021,8.580,92.195) lpos=(-10.521,2.920,-1.825) lprev=(-10.458,2.792,-1.952) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6958,-1.2282,-0.1993) mvmt=(-0.0629,0.1279,0.1279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2792,-1.4682,-0.3043) mvmt=(-0.0629,0.1279,0.1279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5208,2.9199,-1.8045) mvmt=(-0.0629,0.1279,0.1279) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5208,2.9199,-2.5745) mvmt=(-0.0629,0.1279,-0.6221) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.5208,2.9199,-2.5745) out=(-10.5208,2.9199,-2.5700) delta=(0.0000,0.0000,0.0045) deltaMag=0.0045 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9939 dpPos=0.4755 dpMove=-0.7500 iDist=0.0061 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=(141.021,8.580,91.445) lpos=(-10.521,2.920,-2.575) lprev=(-10.458,2.792,-1.952) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.5208,2.9199,-2.5700) mvmt=(-0.0629,0.1279,-0.6175) collide=False insertType=0 objState=0x303 winterp=0.9939 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.021,8.580,91.450) lpos=(-10.521,2.920,-2.570) lprev=(-10.458,2.792,-1.952) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6958,-1.2282,-0.9448) mvmt=(-0.0629,0.1279,-0.6175) collide=False insertType=0 objState=0x303 winterp=0.9939 return=-1 +[push-back-disp] site=dispatch center=(0.2792,-1.4682,-1.0498) mvmt=(-0.0629,0.1279,-0.6175) collide=False insertType=0 objState=0x303 winterp=0.9939 return=-1 +[push-back] site=adjust_sphere in=(0.2792,-1.4682,-1.0498) out=(0.2792,-1.4682,-0.6833) delta=(0.0000,0.0000,0.3665) deltaMag=0.3665 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9939->0.5053 dpPos=0.2253 dpMove=-0.5181 iDist=0.4916 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.5208,2.9199,-2.2035) mvmt=(-0.0629,0.1279,-0.2511) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.021,8.580,91.816) lpos=(-10.521,2.920,-2.204) lprev=(-10.458,2.792,-1.952) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6958,-1.2282,-0.5783) mvmt=(-0.0629,0.1279,-0.2511) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[push-back-disp] site=dispatch center=(0.2792,-1.4682,-0.6833) mvmt=(-0.0629,0.1279,-0.2511) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[push-back-disp] site=dispatch center=(0.2792,-3.6794,-2.0333) mvmt=(-0.0629,0.1279,-0.2511) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[push-back-disp] site=dispatch center=(-10.5208,2.9199,-2.1835) mvmt=(-0.0629,0.1279,-0.2511) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5838,3.0435,-2.0757) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,8.457,91.944) lpos=(-10.584,3.043,-2.076) lprev=(-10.521,2.920,-2.204) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7588,-1.1046,-0.4505) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[push-back-disp] site=dispatch center=(0.2162,-1.3446,-0.5555) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[push-back-disp] site=dispatch center=(-10.5838,3.0435,-2.0557) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.5053 return=-1 +[push-back-disp] site=dispatch center=(-10.5838,3.0435,-2.8257) mvmt=(-0.0629,0.1236,-0.6221) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.5838,3.0435,-2.8257) out=(-10.5838,3.0435,-2.5700) delta=(0.0000,0.0000,0.2557) deltaMag=0.2557 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6591 dpPos=0.2243 dpMove=-0.7500 iDist=0.3409 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.084,8.457,91.194) lpos=(-10.584,3.043,-2.826) lprev=(-10.521,2.920,-2.204) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.5838,3.0435,-2.5700) mvmt=(-0.0629,0.1236,-0.3665) collide=False insertType=0 objState=0x303 winterp=0.6591 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,8.457,91.450) lpos=(-10.584,3.043,-2.570) lprev=(-10.521,2.920,-2.204) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7588,-1.1046,-0.9448) mvmt=(-0.0629,0.1236,-0.3665) collide=False insertType=0 objState=0x303 winterp=0.6591 return=-1 +[push-back-disp] site=dispatch center=(0.2162,-1.3446,-1.0498) mvmt=(-0.0629,0.1236,-0.3665) collide=False insertType=0 objState=0x303 winterp=0.6591 return=-1 +[push-back] site=adjust_sphere in=(0.2162,-1.3446,-1.0498) out=(0.2162,-1.3446,-0.5555) delta=(0.0000,0.0000,0.4943) deltaMag=0.4943 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6591->0.0000 dpPos=0.1364 dpMove=-0.3436 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.5838,3.0435,-2.0757) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,8.457,91.944) lpos=(-10.584,3.043,-2.076) lprev=(-10.521,2.920,-2.204) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7588,-1.1046,-0.4505) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2162,-1.3446,-0.5555) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5838,3.0435,-2.0557) mvmt=(-0.0629,0.1236,0.1279) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6781,3.2288,-1.8840) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,8.271,92.136) lpos=(-10.678,3.229,-1.884) lprev=(-10.584,3.043,-2.076) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8531,-0.9193,-0.2588) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1219,-1.1593,-0.3638) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1219,-3.3705,-1.7138) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6781,3.2288,-1.8640) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6781,3.2288,-2.6340) mvmt=(-0.0943,0.1853,-0.5583) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6781,3.2288,-2.6340) out=(-10.6781,3.2288,-2.5700) delta=(0.0000,0.0000,0.0640) deltaMag=0.0640 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9147 dpPos=0.4160 dpMove=-0.7500 iDist=0.0853 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.178,8.271,91.386) lpos=(-10.678,3.229,-2.634) lprev=(-10.584,3.043,-2.076) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6781,3.2288,-2.5700) mvmt=(-0.0943,0.1853,-0.4943) collide=False insertType=0 objState=0x303 winterp=0.9147 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,8.271,91.450) lpos=(-10.678,3.229,-2.570) lprev=(-10.584,3.043,-2.076) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8531,-0.9193,-0.9448) mvmt=(-0.0943,0.1853,-0.4943) collide=False insertType=0 objState=0x303 winterp=0.9147 return=-1 +[push-back-disp] site=dispatch center=(0.1219,-1.1593,-1.0498) mvmt=(-0.0943,0.1853,-0.4943) collide=False insertType=0 objState=0x303 winterp=0.9147 return=-1 +[push-back] site=adjust_sphere in=(0.1219,-1.1593,-1.0498) out=(0.1219,-1.1593,-0.3638) delta=(0.0000,0.0000,0.6860) deltaMag=0.6860 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9147->0.0000 dpPos=0.0032 dpMove=-0.4768 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.6781,3.2288,-1.8840) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,8.271,92.136) lpos=(-10.678,3.229,-1.884) lprev=(-10.584,3.043,-2.076) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8531,-0.9193,-0.2588) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1219,-1.1593,-0.3638) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1219,-3.3705,-1.7138) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6781,3.2288,-1.8640) mvmt=(-0.0943,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7825,3.4339,-1.6718) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.283,8.066,92.348) lpos=(-10.783,3.434,-1.672) lprev=(-10.678,3.229,-1.884) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9575,-0.7142,-0.0466) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0175,-0.9542,-0.1516) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0175,-3.1654,-1.5016) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7825,3.4339,-1.6518) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7825,3.4339,-2.4218) mvmt=(-0.1044,0.2051,-0.5378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.283,8.066,91.598) lpos=(-10.783,3.434,-2.422) lprev=(-10.678,3.229,-1.884) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9575,-0.7142,-0.7966) mvmt=(-0.1044,0.2051,-0.5378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0175,-0.9542,-0.9016) mvmt=(-0.1044,0.2051,-0.5378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0175,-0.9542,-0.9016) out=(0.0175,-0.9542,-0.1516) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7825,3.4339,-1.6718) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.283,8.066,92.348) lpos=(-10.783,3.434,-1.672) lprev=(-10.678,3.229,-1.884) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9575,-0.7142,-0.0466) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0175,-0.9542,-0.1516) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0175,-3.1654,-1.5016) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7825,3.4339,-1.6518) mvmt=(-0.1044,0.2051,0.2122) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8876,3.6403,-1.4583) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,7.860,92.562) lpos=(-10.888,3.640,-1.458) lprev=(-10.783,3.434,-1.672) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0626,-0.5077,0.1669) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0876,-0.7477,0.0620) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0876,-2.9590,-1.2881) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8876,3.6403,-1.4383) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8876,3.6403,-2.2083) mvmt=(-0.1051,0.2065,-0.5364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,7.860,91.812) lpos=(-10.888,3.640,-2.208) lprev=(-10.783,3.434,-1.672) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0626,-0.5077,-0.5831) mvmt=(-0.1051,0.2065,-0.5364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0876,-0.7477,-0.6880) mvmt=(-0.1051,0.2065,-0.5364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0876,-0.7477,-0.6880) out=(-0.0876,-0.7477,0.0620) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8876,3.6403,-1.4582) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,7.860,92.562) lpos=(-10.888,3.640,-1.458) lprev=(-10.783,3.434,-1.672) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0626,-0.5077,0.1670) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0876,-0.7477,0.0620) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0876,-2.9590,-1.2880) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8876,3.6403,-1.4382) mvmt=(-0.1051,0.2065,0.2136) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8396,3.8497,-1.2416) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.340,7.650,92.778) lpos=(-10.840,3.850,-1.242) lprev=(-10.888,3.640,-1.458) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0146,-0.2983,0.3836) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0396,-0.5383,0.2786) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0396,-2.7496,-1.0714) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8396,3.8497,-1.2216) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8396,3.8497,-1.9916) mvmt=(0.0481,0.2094,-0.5334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.340,7.650,92.028) lpos=(-10.840,3.850,-1.992) lprev=(-10.888,3.640,-1.458) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0146,-0.2983,-0.3664) mvmt=(0.0481,0.2094,-0.5334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0396,-0.5383,-0.4714) mvmt=(0.0481,0.2094,-0.5334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0396,-0.5383,-0.4714) out=(-0.0396,-0.5383,0.2786) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8396,3.8497,-1.2416) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.340,7.650,92.778) lpos=(-10.840,3.850,-1.242) lprev=(-10.888,3.640,-1.458) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0146,-0.2983,0.3836) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0396,-0.5383,0.2786) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0396,-2.7496,-1.0714) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8396,3.8497,-1.2216) mvmt=(0.0481,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7959,4.0399,-1.0449) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.296,7.460,92.975) lpos=(-10.796,4.040,-1.045) lprev=(-10.840,3.850,-1.242) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9709,-0.1082,0.5803) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0041,-0.3482,0.4753) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0041,-2.5594,-0.8747) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7959,4.0399,-1.0249) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7959,4.0399,-1.7949) mvmt=(0.0436,0.1901,-0.5533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.296,7.460,92.225) lpos=(-10.796,4.040,-1.795) lprev=(-10.840,3.850,-1.242) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9709,-0.1082,-0.1697) mvmt=(0.0436,0.1901,-0.5533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0041,-0.3482,-0.2747) mvmt=(0.0436,0.1901,-0.5533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0041,-0.3482,-0.2747) out=(0.0041,-0.3482,0.4753) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7959,4.0399,-1.0449) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.296,7.460,92.975) lpos=(-10.796,4.040,-1.045) lprev=(-10.840,3.850,-1.242) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9709,-0.1082,0.5803) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0041,-0.3482,0.4753) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0041,-2.5594,-0.8747) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7959,4.0399,-1.0249) mvmt=(0.0436,0.1901,0.1967) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7477,4.2500,-0.8275) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.248,7.250,93.192) lpos=(-10.748,4.250,-0.828) lprev=(-10.796,4.040,-1.045) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9227,0.1020,0.7977) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0523,-0.1380,0.6927) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0523,-2.3493,-0.6573) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7477,4.2500,-0.8075) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7477,4.2500,-1.5775) mvmt=(0.0482,0.2102,-0.5326) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.248,7.250,92.442) lpos=(-10.748,4.250,-1.578) lprev=(-10.796,4.040,-1.045) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9227,0.1020,0.0477) mvmt=(0.0482,0.2102,-0.5326) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0523,-0.1380,-0.0573) mvmt=(0.0482,0.2102,-0.5326) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0523,-0.1380,-0.0573) out=(0.0523,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7477,4.2500,-0.8275) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.248,7.250,93.192) lpos=(-10.748,4.250,-0.828) lprev=(-10.796,4.040,-1.045) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9227,0.1020,0.7977) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0523,-0.1380,0.6927) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0523,-2.3493,-0.6573) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7477,4.2500,-0.8075) mvmt=(0.0482,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7020,4.4490,-0.6217) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.202,7.051,93.398) lpos=(-10.702,4.449,-0.622) lprev=(-10.748,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7020,4.4490,-0.6217) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8770,0.3010,1.0035) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0980,0.0610,0.8985) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0980,-2.1503,-0.4515) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7020,4.4490,-0.6017) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7020,4.4490,-0.6217) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.202,7.051,93.398) lpos=(-10.702,4.449,-0.622) lprev=(-10.748,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7020,4.4490,-0.6217) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8770,0.3010,1.0035) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0980,0.0610,0.8985) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0980,-2.1503,-0.4515) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7020,4.4490,-0.6017) mvmt=(0.0457,0.1990,0.2058) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7020,4.2500,-0.8275) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.202,7.250,93.192) lpos=(-10.702,4.250,-0.828) lprev=(-10.748,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8770,0.1020,0.7977) 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.0980,-0.1380,0.6927) 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.0980,-2.3493,-0.6573) 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.7020,4.2500,-0.8075) 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.7020,4.2500,-1.5775) mvmt=(0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.202,7.250,92.442) lpos=(-10.702,4.250,-1.578) lprev=(-10.748,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8770,0.1020,0.0477) 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.0980,-0.1380,-0.0573) 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.0980,-0.1380,-0.0573) out=(0.0980,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7020,4.2500,-0.8275) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.202,7.250,93.192) lpos=(-10.702,4.250,-0.828) lprev=(-10.748,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8770,0.1020,0.7977) 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.0980,-0.1380,0.6927) 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.0980,-2.3493,-0.6573) 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.7020,4.2500,-0.8075) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6531,4.4631,-0.6071) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.037,93.413) lpos=(-10.653,4.463,-0.607) lprev=(-10.702,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6531,4.4631,-0.6071) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8281,0.3151,1.0181) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,0.0751,0.9131) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,-2.1362,-0.4369) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2585,-3.0054,2.4174) mvmt=(-0.1768,0.1286,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6531,4.4631,-0.5871) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6531,4.4631,-0.6071) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.037,93.413) lpos=(-10.653,4.463,-0.607) lprev=(-10.702,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6531,4.4631,-0.6071) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8281,0.3151,1.0181) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,0.0751,0.9131) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,-2.1362,-0.4369) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2585,-3.0054,2.4174) mvmt=(-0.1768,0.1286,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6531,4.4631,-0.5871) mvmt=(0.0489,0.2131,0.2204) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6531,4.2500,-0.8275) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.250,93.192) lpos=(-10.653,4.250,-0.828) lprev=(-10.702,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8281,0.1020,0.7977) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,-0.1380,0.6927) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,-2.3493,-0.6573) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6531,4.2500,-0.8075) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6531,4.2500,-1.5775) mvmt=(0.0489,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.250,92.442) lpos=(-10.653,4.250,-1.578) lprev=(-10.702,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8281,0.1020,0.0477) mvmt=(0.0489,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,-0.1380,-0.0573) mvmt=(0.0489,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1469,-0.1380,-0.0573) out=(0.1469,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6531,4.2500,-0.8275) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.250,93.192) lpos=(-10.653,4.250,-0.828) lprev=(-10.702,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8281,0.1020,0.7977) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,-0.1380,0.6927) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1469,-2.3493,-0.6573) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6531,4.2500,-0.8075) mvmt=(0.0489,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6061,4.4546,-0.6159) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.045,93.404) lpos=(-10.606,4.455,-0.616) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6061,4.4546,-0.6159) mvmt=(0.0470,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.7811,0.3066,1.0093) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,0.0666,0.9043) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,-2.1447,-0.4457) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2847,-2.9656,2.4086) mvmt=(-0.1698,0.1235,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6061,4.4546,-0.5959) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6061,4.4546,-0.6159) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.045,93.404) lpos=(-10.606,4.455,-0.616) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6061,4.4546,-0.6159) mvmt=(0.0470,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.7811,0.3066,1.0093) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,0.0666,0.9043) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,-2.1447,-0.4457) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2847,-2.9656,2.4086) mvmt=(-0.1698,0.1235,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6061,4.4546,-0.5959) mvmt=(0.0470,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6061,4.2500,-0.8275) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.250,93.192) lpos=(-10.606,4.250,-0.828) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7811,0.1020,0.7977) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,-0.1380,0.6927) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,-2.3493,-0.6573) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6061,4.2500,-0.8075) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6061,4.2500,-1.5775) mvmt=(0.0470,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.250,92.442) lpos=(-10.606,4.250,-1.578) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7811,0.1020,0.0477) mvmt=(0.0470,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,-0.1380,-0.0573) mvmt=(0.0470,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1939,-0.1380,-0.0573) out=(0.1939,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6061,4.2500,-0.8275) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.250,93.192) lpos=(-10.606,4.250,-0.828) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7811,0.1020,0.7977) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,-0.1380,0.6927) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1939,-2.3493,-0.6573) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6061,4.2500,-0.8075) mvmt=(0.0470,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5605,4.4487,-0.6220) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.051,93.398) lpos=(-10.561,4.449,-0.622) lprev=(-10.606,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5605,4.4487,-0.6220) mvmt=(0.0456,0.1987,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.7355,0.3007,1.0032) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2395,0.0607,0.8982) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2395,-2.1506,-0.4518) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3080,-2.9259,2.4025) mvmt=(-0.1649,0.1199,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5605,4.4487,-0.6020) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5605,4.4487,-0.6220) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.051,93.398) lpos=(-10.561,4.449,-0.622) lprev=(-10.606,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5605,4.4487,-0.6220) mvmt=(0.0456,0.1987,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.7355,0.3007,1.0032) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2395,0.0607,0.8982) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2395,-2.1506,-0.4518) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3080,-2.9259,2.4025) mvmt=(-0.1649,0.1199,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5605,4.4487,-0.6020) mvmt=(0.0456,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5605,4.2500,-0.8275) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.250,93.192) lpos=(-10.561,4.250,-0.828) lprev=(-10.606,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7355,0.1020,0.7977) 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.2395,-0.1380,0.6927) 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.2395,-2.3493,-0.6573) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5605,4.2500,-0.8075) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5605,4.2500,-1.5775) mvmt=(0.0456,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.250,92.442) lpos=(-10.561,4.250,-1.578) lprev=(-10.606,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7355,0.1020,0.0477) 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.2395,-0.1380,-0.0573) 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.2395,-0.1380,-0.0573) out=(0.2395,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5605,4.2500,-0.8275) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.250,93.192) lpos=(-10.561,4.250,-0.828) lprev=(-10.606,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7355,0.1020,0.7977) 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.2395,-0.1380,0.6927) 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.2395,-2.3493,-0.6573) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5605,4.2500,-0.8075) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5128,4.4577,-0.6127) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.013,7.042,93.407) lpos=(-10.513,4.458,-0.613) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5128,4.4577,-0.6127) mvmt=(0.0477,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=(-0.6878,0.3096,1.0125) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,0.0696,0.9075) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,-2.1416,-0.4425) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3185,-2.8786,2.4118) mvmt=(-0.1723,0.1253,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5128,4.4577,-0.5927) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5128,4.4577,-0.6127) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.013,7.042,93.407) lpos=(-10.513,4.458,-0.613) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5128,4.4577,-0.6127) mvmt=(0.0477,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=(-0.6878,0.3096,1.0125) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,0.0696,0.9075) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,-2.1416,-0.4425) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3185,-2.8786,2.4118) mvmt=(-0.1723,0.1253,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5128,4.4577,-0.5927) mvmt=(0.0477,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5128,4.2500,-0.8275) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.013,7.250,93.192) lpos=(-10.513,4.250,-0.828) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6878,0.1020,0.7977) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,-0.1380,0.6927) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,-2.3493,-0.6573) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5128,4.2500,-0.8075) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5128,4.2500,-1.5775) mvmt=(0.0477,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.013,7.250,92.442) lpos=(-10.513,4.250,-1.578) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6878,0.1020,0.0477) mvmt=(0.0477,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,-0.1380,-0.0573) mvmt=(0.0477,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2872,-0.1380,-0.0573) out=(0.2872,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5128,4.2500,-0.8275) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.013,7.250,93.192) lpos=(-10.513,4.250,-0.828) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6878,0.1020,0.7977) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,-0.1380,0.6927) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2872,-2.3493,-0.6573) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5128,4.2500,-0.8075) mvmt=(0.0477,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4661,4.4536,-0.6169) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.966,7.046,93.403) lpos=(-10.466,4.454,-0.617) lprev=(-10.513,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4661,4.4536,-0.6169) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6411,0.3056,1.0083) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3339,0.0656,0.9033) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3339,-2.1457,-0.4467) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3405,-2.8372,2.4076) mvmt=(-0.1689,0.1229,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4661,4.4536,-0.5969) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4661,4.4536,-0.6169) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.966,7.046,93.403) lpos=(-10.466,4.454,-0.617) lprev=(-10.513,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4661,4.4536,-0.6169) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6411,0.3056,1.0083) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3339,0.0656,0.9033) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3339,-2.1457,-0.4467) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3405,-2.8372,2.4076) mvmt=(-0.1689,0.1229,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4661,4.4536,-0.5969) mvmt=(0.0467,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4661,4.2500,-0.8275) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.966,7.250,93.192) lpos=(-10.466,4.250,-0.828) lprev=(-10.513,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6411,0.1020,0.7977) 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.3339,-0.1380,0.6927) 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.3339,-2.3493,-0.6573) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4661,4.2500,-0.8075) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4661,4.2500,-1.5775) mvmt=(0.0467,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.966,7.250,92.442) lpos=(-10.466,4.250,-1.578) lprev=(-10.513,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6411,0.1020,0.0477) 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.3339,-0.1380,-0.0573) 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.3339,-0.1380,-0.0573) out=(0.3339,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4661,4.2500,-0.8275) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.966,7.250,93.192) lpos=(-10.466,4.250,-0.828) lprev=(-10.513,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6411,0.1020,0.7977) 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.3339,-0.1380,0.6927) 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.3339,-2.3493,-0.6573) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4661,4.2500,-0.8075) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4371,4.4564,-0.6141) mvmt=(0.0290,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4371,4.4564,-0.6141) mvmt=(0.0290,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,7.044,93.406) lpos=(-10.437,4.456,-0.614) lprev=(-10.466,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4371,4.4564,-0.6141) mvmt=(0.0290,0.2063,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=(-0.6121,0.3083,1.0111) mvmt=(0.0290,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3629,0.0683,0.9061) mvmt=(0.0290,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3629,-2.1429,-0.4439) mvmt=(0.0290,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3494,-2.8094,2.4104) mvmt=(-0.1784,0.1076,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4371,4.4564,-0.5941) mvmt=(0.0290,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,7.044,93.406) lpos=(-10.437,4.456,-0.614) lprev=(-10.466,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4371,4.2500,-0.8275) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,7.250,93.192) lpos=(-10.437,4.250,-0.828) lprev=(-10.466,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6121,0.1020,0.7977) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3629,-0.1380,0.6927) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3629,-2.3493,-0.6573) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4371,4.2500,-0.8075) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4371,4.2500,-1.5775) mvmt=(0.0290,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,7.250,92.442) lpos=(-10.437,4.250,-1.578) lprev=(-10.466,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6121,0.1020,0.0477) mvmt=(0.0290,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3629,-0.1380,-0.0573) mvmt=(0.0290,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3629,-0.1380,-0.0573) out=(0.3629,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4371,4.2500,-0.8275) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.937,7.250,93.192) lpos=(-10.437,4.250,-0.828) lprev=(-10.466,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6121,0.1020,0.7977) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3629,-0.1380,0.6927) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3629,-2.3493,-0.6573) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4371,4.2500,-0.8075) mvmt=(0.0290,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4424,4.4463,-0.6245) mvmt=(-0.0053,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.4463,-0.6245) mvmt=(-0.0053,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.054,93.396) lpos=(-10.442,4.446,-0.624) lprev=(-10.437,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4424,4.4463,-0.6245) mvmt=(-0.0053,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.6174,0.2983,1.0007) mvmt=(-0.0053,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,0.0583,0.8958) mvmt=(-0.0053,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-2.1530,-0.4543) mvmt=(-0.0053,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3566,-2.8182,2.4000) mvmt=(-0.1826,0.0721,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.4463,-0.6045) mvmt=(-0.0053,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.054,93.396) lpos=(-10.442,4.446,-0.624) lprev=(-10.437,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4424,4.2500,-0.8275) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.250,93.192) lpos=(-10.442,4.250,-0.828) lprev=(-10.437,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6174,0.1020,0.7977) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-0.1380,0.6927) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-2.3493,-0.6573) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.2500,-0.8075) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.2500,-1.5775) mvmt=(-0.0053,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.250,92.442) lpos=(-10.442,4.250,-1.578) lprev=(-10.437,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6174,0.1020,0.0477) mvmt=(-0.0053,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-0.1380,-0.0573) mvmt=(-0.0053,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3576,-0.1380,-0.0573) out=(0.3576,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4424,4.2500,-0.8275) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.250,93.192) lpos=(-10.442,4.250,-0.828) lprev=(-10.437,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6174,0.1020,0.7977) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-0.1380,0.6927) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3576,-2.3493,-0.6573) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4424,4.2500,-0.8075) mvmt=(-0.0053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4808,4.4463,-0.6245) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.981,7.054,93.396) lpos=(-10.481,4.446,-0.624) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4808,4.4463,-0.6245) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6558,0.2983,1.0007) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,0.0583,0.8957) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,-2.1530,-0.4543) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3415,-2.8536,2.4000) mvmt=(-0.1956,0.0417,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4808,4.4463,-0.6045) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4808,4.4463,-0.6245) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.981,7.054,93.396) lpos=(-10.481,4.446,-0.624) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4808,4.4463,-0.6245) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6558,0.2983,1.0007) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,0.0583,0.8957) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,-2.1530,-0.4543) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3415,-2.8536,2.4000) mvmt=(-0.1956,0.0417,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4808,4.4463,-0.6045) mvmt=(-0.0384,0.1963,0.2030) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4808,4.2500,-0.8275) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.981,7.250,93.192) lpos=(-10.481,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6558,0.1020,0.7977) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,-0.1380,0.6927) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,-2.3493,-0.6573) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4808,4.2500,-0.8075) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4808,4.2500,-1.5775) mvmt=(-0.0384,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.981,7.250,92.442) lpos=(-10.481,4.250,-1.578) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6558,0.1020,0.0477) mvmt=(-0.0384,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,-0.1380,-0.0573) mvmt=(-0.0384,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3192,-0.1380,-0.0573) out=(0.3192,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4808,4.2500,-0.8275) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.981,7.250,93.192) lpos=(-10.481,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6558,0.1020,0.7977) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,-0.1380,0.6927) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3192,-2.3493,-0.6573) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4808,4.2500,-0.8075) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5242,4.4485,-0.6222) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.024,7.052,93.398) lpos=(-10.524,4.448,-0.622) lprev=(-10.481,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5242,4.4485,-0.6222) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6992,0.3004,1.0030) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,0.0604,0.8980) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,-2.1508,-0.4520) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3225,-2.8926,2.4023) mvmt=(-0.1996,0.0379,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5242,4.4485,-0.6022) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5242,4.4485,-0.6222) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.024,7.052,93.398) lpos=(-10.524,4.448,-0.622) lprev=(-10.481,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5242,4.4485,-0.6222) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6992,0.3004,1.0030) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,0.0604,0.8980) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,-2.1508,-0.4520) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3225,-2.8926,2.4023) mvmt=(-0.1996,0.0379,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5242,4.4485,-0.6022) mvmt=(-0.0434,0.1984,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5242,4.2500,-0.8275) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.024,7.250,93.192) lpos=(-10.524,4.250,-0.828) lprev=(-10.481,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6992,0.1020,0.7977) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,-0.1380,0.6927) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,-2.3493,-0.6573) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5242,4.2500,-0.8075) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5242,4.2500,-1.5775) mvmt=(-0.0434,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.024,7.250,92.442) lpos=(-10.524,4.250,-1.578) lprev=(-10.481,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6992,0.1020,0.0477) mvmt=(-0.0434,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,-0.1380,-0.0573) mvmt=(-0.0434,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2758,-0.1380,-0.0573) out=(0.2758,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5242,4.2500,-0.8275) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.024,7.250,93.192) lpos=(-10.524,4.250,-0.828) lprev=(-10.481,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6992,0.1020,0.7977) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,-0.1380,0.6927) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2758,-2.3493,-0.6573) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5242,4.2500,-0.8075) mvmt=(-0.0434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5669,4.4454,-0.6254) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.055,93.395) lpos=(-10.567,4.445,-0.625) lprev=(-10.524,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5669,4.4454,-0.6254) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7419,0.2974,0.9998) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,0.0574,0.8948) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,-2.1539,-0.4552) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3085,-2.9331,2.3991) mvmt=(-0.1965,0.0373,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5669,4.4454,-0.6054) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5669,4.4454,-0.6254) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.055,93.395) lpos=(-10.567,4.445,-0.625) lprev=(-10.524,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5669,4.4454,-0.6254) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7419,0.2974,0.9998) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,0.0574,0.8948) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,-2.1539,-0.4552) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3085,-2.9331,2.3991) mvmt=(-0.1965,0.0373,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5669,4.4454,-0.6054) mvmt=(-0.0427,0.1954,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5669,4.2500,-0.8275) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.250,93.192) lpos=(-10.567,4.250,-0.828) lprev=(-10.524,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7419,0.1020,0.7977) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,-0.1380,0.6927) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,-2.3493,-0.6573) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5669,4.2500,-0.8075) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5669,4.2500,-1.5775) mvmt=(-0.0427,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.250,92.442) lpos=(-10.567,4.250,-1.578) lprev=(-10.524,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7419,0.1020,0.0477) mvmt=(-0.0427,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,-0.1380,-0.0573) mvmt=(-0.0427,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2331,-0.1380,-0.0573) out=(0.2331,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5669,4.2500,-0.8275) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.250,93.192) lpos=(-10.567,4.250,-0.828) lprev=(-10.524,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7419,0.1020,0.7977) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,-0.1380,0.6927) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,-2.3493,-0.6573) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5669,4.2500,-0.8075) mvmt=(-0.0427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6092,4.4432,-0.6277) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.057,93.392) lpos=(-10.609,4.443,-0.628) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6092,4.4432,-0.6277) mvmt=(-0.0423,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.7842,0.2952,0.9975) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,0.0552,0.8925) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,-2.1561,-0.4575) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2940,-2.9729,2.3968) mvmt=(-0.1943,0.0369,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6092,4.4432,-0.6077) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6092,4.4432,-0.6277) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.057,93.392) lpos=(-10.609,4.443,-0.628) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6092,4.4432,-0.6277) mvmt=(-0.0423,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.7842,0.2952,0.9975) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,0.0552,0.8925) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,-2.1561,-0.4575) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2940,-2.9729,2.3968) mvmt=(-0.1943,0.0369,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6092,4.4432,-0.6077) mvmt=(-0.0423,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6092,4.2500,-0.8275) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.250,93.192) lpos=(-10.609,4.250,-0.828) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7842,0.1020,0.7977) mvmt=(-0.0423,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,-0.1380,0.6927) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,-2.3493,-0.6573) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6092,4.2500,-0.8075) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6092,4.2500,-1.5775) mvmt=(-0.0423,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.250,92.442) lpos=(-10.609,4.250,-1.578) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7842,0.1020,0.0477) mvmt=(-0.0423,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,-0.1380,-0.0573) mvmt=(-0.0423,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1908,-0.1380,-0.0573) out=(0.1908,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6092,4.2500,-0.8275) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.250,93.192) lpos=(-10.609,4.250,-0.828) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7842,0.1020,0.7977) mvmt=(-0.0423,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,-0.1380,0.6927) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1908,-2.3493,-0.6573) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6092,4.2500,-0.8075) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6515,4.4433,-0.6276) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.057,93.392) lpos=(-10.651,4.443,-0.628) lprev=(-10.609,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6515,4.4433,-0.6276) mvmt=(-0.0423,0.1933,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.8265,0.2953,0.9976) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,0.0553,0.8926) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,-2.1560,-0.4574) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2773,-3.0117,2.3969) mvmt=(-0.1944,0.0369,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6515,4.4433,-0.6076) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6515,4.4433,-0.6276) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.057,93.392) lpos=(-10.651,4.443,-0.628) lprev=(-10.609,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6515,4.4433,-0.6276) mvmt=(-0.0423,0.1933,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.8265,0.2953,0.9976) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,0.0553,0.8926) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,-2.1560,-0.4574) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2773,-3.0117,2.3969) mvmt=(-0.1944,0.0369,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6515,4.4433,-0.6076) mvmt=(-0.0423,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6515,4.2500,-0.8275) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.250,93.192) lpos=(-10.651,4.250,-0.828) lprev=(-10.609,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8265,0.1020,0.7977) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,-0.1380,0.6927) mvmt=(-0.0423,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,-2.3493,-0.6573) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6515,4.2500,-0.8075) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6515,4.2500,-1.5775) mvmt=(-0.0423,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.250,92.442) lpos=(-10.651,4.250,-1.578) lprev=(-10.609,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8265,0.1020,0.0477) mvmt=(-0.0423,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,-0.1380,-0.0573) mvmt=(-0.0423,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1485,-0.1380,-0.0573) out=(0.1485,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6515,4.2500,-0.8275) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.250,93.192) lpos=(-10.651,4.250,-0.828) lprev=(-10.609,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8265,0.1020,0.7977) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,-0.1380,0.6927) mvmt=(-0.0423,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1485,-2.3493,-0.6573) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6515,4.2500,-0.8075) mvmt=(-0.0423,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6935,4.4423,-0.6286) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.058,93.391) lpos=(-10.694,4.442,-0.629) lprev=(-10.651,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6935,4.4423,-0.6286) mvmt=(-0.0421,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=(-0.8685,0.2943,0.9966) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,0.0543,0.8916) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,-2.1570,-0.4584) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2617,-3.0508,2.3959) mvmt=(-0.1934,0.0368,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6935,4.4423,-0.6086) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6935,4.4423,-0.6286) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.058,93.391) lpos=(-10.694,4.442,-0.629) lprev=(-10.651,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6935,4.4423,-0.6286) mvmt=(-0.0421,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=(-0.8685,0.2943,0.9966) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,0.0543,0.8916) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,-2.1570,-0.4584) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2617,-3.0508,2.3959) mvmt=(-0.1934,0.0368,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6935,4.4423,-0.6086) mvmt=(-0.0421,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6935,4.2500,-0.8275) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.250,93.192) lpos=(-10.694,4.250,-0.828) lprev=(-10.651,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8685,0.1020,0.7977) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,-0.1380,0.6927) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,-2.3493,-0.6573) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6935,4.2500,-0.8075) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6935,4.2500,-1.5775) mvmt=(-0.0421,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.250,92.442) lpos=(-10.694,4.250,-1.578) lprev=(-10.651,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8685,0.1020,0.0477) mvmt=(-0.0421,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,-0.1380,-0.0573) mvmt=(-0.0421,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1065,-0.1380,-0.0573) out=(0.1065,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6935,4.2500,-0.8275) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.250,93.192) lpos=(-10.694,4.250,-0.828) lprev=(-10.651,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8685,0.1020,0.7977) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,-0.1380,0.6927) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1065,-2.3493,-0.6573) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6935,4.2500,-0.8075) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7364,4.4459,-0.6249) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.054,93.395) lpos=(-10.736,4.446,-0.625) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7364,4.4459,-0.6249) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.2978,1.0003) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,0.0578,0.8953) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.1534,-0.4547) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.4459,-0.6049) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.4459,-0.6249) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.054,93.395) lpos=(-10.736,4.446,-0.625) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7364,4.4459,-0.6249) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.2978,1.0003) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,0.0578,0.8953) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.1534,-0.4547) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.4459,-0.6049) mvmt=(-0.0428,0.1958,0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.2500,-0.8275) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.250,93.192) lpos=(-10.736,4.250,-0.828) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9114,0.1020,0.7977) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.1380,0.6927) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.3493,-0.6573) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.2500,-0.8075) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.2500,-1.5775) mvmt=(-0.0428,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.250,92.442) lpos=(-10.736,4.250,-1.578) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9114,0.1020,0.0477) mvmt=(-0.0428,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.1380,-0.0573) mvmt=(-0.0428,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0636,-0.1380,-0.0573) out=(0.0636,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.2500,-0.8275) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.250,93.192) lpos=(-10.736,4.250,-0.828) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9114,0.1020,0.7977) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.1380,0.6927) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.3493,-0.6573) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.2500,-0.8075) mvmt=(-0.0428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7788,4.4438,-0.6270) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.056,93.393) lpos=(-10.779,4.444,-0.627) lprev=(-10.736,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7788,4.4438,-0.6270) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9538,0.2958,0.9982) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,0.0558,0.8932) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,-2.1555,-0.4568) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7788,4.4438,-0.6070) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7788,4.4438,-0.6270) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.056,93.393) lpos=(-10.779,4.444,-0.627) lprev=(-10.736,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7788,4.4438,-0.6270) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9538,0.2958,0.9982) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,0.0558,0.8932) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,-2.1555,-0.4568) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7788,4.4438,-0.6070) mvmt=(-0.0424,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7788,4.2500,-0.8275) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.250,93.192) lpos=(-10.779,4.250,-0.828) lprev=(-10.736,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9538,0.1020,0.7977) mvmt=(-0.0424,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,-0.1380,0.6927) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,-2.3493,-0.6573) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7788,4.2500,-0.8075) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7788,4.2500,-1.5775) mvmt=(-0.0424,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.250,92.442) lpos=(-10.779,4.250,-1.578) lprev=(-10.736,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9538,0.1020,0.0477) mvmt=(-0.0424,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,-0.1380,-0.0573) mvmt=(-0.0424,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0212,-0.1380,-0.0573) out=(0.0212,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7788,4.2500,-0.8275) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.250,93.192) lpos=(-10.779,4.250,-0.828) lprev=(-10.736,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9538,0.1020,0.7977) mvmt=(-0.0424,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,-0.1380,0.6927) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0212,-2.3493,-0.6573) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7788,4.2500,-0.8075) mvmt=(-0.0424,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8213,4.4442,-0.6267) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.321,7.056,93.393) lpos=(-10.821,4.444,-0.627) lprev=(-10.779,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8213,4.4442,-0.6267) mvmt=(-0.0425,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=(-0.9963,0.2961,0.9985) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,0.0561,0.8935) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,-2.1551,-0.4565) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8213,4.4442,-0.6067) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8213,4.4442,-0.6267) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.321,7.056,93.393) lpos=(-10.821,4.444,-0.627) lprev=(-10.779,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8213,4.4442,-0.6267) mvmt=(-0.0425,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=(-0.9963,0.2961,0.9985) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,0.0561,0.8935) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,-2.1551,-0.4565) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8213,4.4442,-0.6067) mvmt=(-0.0425,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8213,4.2500,-0.8275) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.321,7.250,93.192) lpos=(-10.821,4.250,-0.828) lprev=(-10.779,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9963,0.1020,0.7977) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,-0.1380,0.6927) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,-2.3493,-0.6573) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8213,4.2500,-0.8075) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8213,4.2500,-1.5775) mvmt=(-0.0425,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.321,7.250,92.442) lpos=(-10.821,4.250,-1.578) lprev=(-10.779,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9963,0.1020,0.0477) mvmt=(-0.0425,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,-0.1380,-0.0573) mvmt=(-0.0425,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0213,-0.1380,-0.0573) out=(-0.0213,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8213,4.2500,-0.8275) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.321,7.250,93.192) lpos=(-10.821,4.250,-0.828) lprev=(-10.779,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9963,0.1020,0.7977) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,-0.1380,0.6927) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0213,-2.3493,-0.6573) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8213,4.2500,-0.8075) mvmt=(-0.0425,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8634,4.4425,-0.6284) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.363,7.057,93.392) lpos=(-10.863,4.443,-0.628) lprev=(-10.821,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8634,4.4425,-0.6284) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0384,0.2945,0.9968) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,0.0545,0.8918) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,-2.1568,-0.4582) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8634,4.4425,-0.6084) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8634,4.4425,-0.6284) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.363,7.057,93.392) lpos=(-10.863,4.443,-0.628) lprev=(-10.821,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8634,4.4425,-0.6284) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0384,0.2945,0.9968) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,0.0545,0.8918) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,-2.1568,-0.4582) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8634,4.4425,-0.6084) mvmt=(-0.0421,0.1925,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8634,4.2500,-0.8275) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.363,7.250,93.192) lpos=(-10.863,4.250,-0.828) lprev=(-10.821,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0384,0.1020,0.7977) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,-0.1380,0.6927) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,-2.3493,-0.6573) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8634,4.2500,-0.8075) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8634,4.2500,-1.5775) mvmt=(-0.0421,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.363,7.250,92.442) lpos=(-10.863,4.250,-1.578) lprev=(-10.821,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0384,0.1020,0.0477) mvmt=(-0.0421,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,-0.1380,-0.0573) mvmt=(-0.0421,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0634,-0.1380,-0.0573) out=(-0.0634,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8634,4.2500,-0.8275) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.363,7.250,93.192) lpos=(-10.863,4.250,-0.828) lprev=(-10.821,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0384,0.1020,0.7977) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,-0.1380,0.6927) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0634,-2.3493,-0.6573) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8634,4.2500,-0.8075) mvmt=(-0.0421,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9069,4.4490,-0.6216) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.051,93.398) lpos=(-10.907,4.449,-0.622) lprev=(-10.863,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9069,4.4490,-0.6216) mvmt=(-0.0435,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=(-1.0819,0.3010,1.0036) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,0.0610,0.8986) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,-2.1503,-0.4514) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9069,4.4490,-0.6016) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9069,4.4490,-0.6216) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.051,93.398) lpos=(-10.907,4.449,-0.622) lprev=(-10.863,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9069,4.4490,-0.6216) mvmt=(-0.0435,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=(-1.0819,0.3010,1.0036) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,0.0610,0.8986) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,-2.1503,-0.4514) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9069,4.4490,-0.6016) mvmt=(-0.0435,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9069,4.2500,-0.8275) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.250,93.192) lpos=(-10.907,4.250,-0.828) lprev=(-10.863,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0819,0.1020,0.7977) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,-0.1380,0.6927) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,-2.3493,-0.6573) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9069,4.2500,-0.8075) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9069,4.2500,-1.5775) mvmt=(-0.0435,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.250,92.442) lpos=(-10.907,4.250,-1.578) lprev=(-10.863,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0819,0.1020,0.0477) mvmt=(-0.0435,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,-0.1380,-0.0573) mvmt=(-0.0435,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1069,-0.1380,-0.0573) out=(-0.1069,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9069,4.2500,-0.8275) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.407,7.250,93.192) lpos=(-10.907,4.250,-0.828) lprev=(-10.863,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0819,0.1020,0.7977) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,-0.1380,0.6927) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1069,-2.3493,-0.6573) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9069,4.2500,-0.8075) mvmt=(-0.0435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9530,4.4608,-0.6094) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.453,7.039,93.411) lpos=(-10.953,4.461,-0.609) lprev=(-10.907,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9530,4.4608,-0.6094) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1280,0.3128,1.0158) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,0.0728,0.9108) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,-2.1385,-0.4392) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9530,4.4608,-0.5894) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9530,4.4608,-0.6094) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.453,7.039,93.411) lpos=(-10.953,4.461,-0.609) lprev=(-10.907,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9530,4.4608,-0.6094) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1280,0.3128,1.0158) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,0.0728,0.9108) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,-2.1385,-0.4392) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9530,4.4608,-0.5894) mvmt=(-0.0461,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9530,4.2500,-0.8275) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.453,7.250,93.192) lpos=(-10.953,4.250,-0.828) lprev=(-10.907,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1280,0.1020,0.7977) mvmt=(-0.0461,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,-0.1380,0.6927) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,-2.3493,-0.6573) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9530,4.2500,-0.8075) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9530,4.2500,-1.5775) mvmt=(-0.0461,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.453,7.250,92.442) lpos=(-10.953,4.250,-1.578) lprev=(-10.907,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1280,0.1020,0.0477) mvmt=(-0.0461,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,-0.1380,-0.0573) mvmt=(-0.0461,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1530,-0.1380,-0.0573) out=(-0.1530,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9530,4.2500,-0.8275) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.453,7.250,93.192) lpos=(-10.953,4.250,-0.828) lprev=(-10.907,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1280,0.1020,0.7977) mvmt=(-0.0461,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,-0.1380,0.6927) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1530,-2.3493,-0.6573) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9530,4.2500,-0.8075) mvmt=(-0.0461,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9990,4.4602,-0.6101) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.040,93.410) lpos=(-10.999,4.460,-0.610) lprev=(-10.953,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9990,4.4602,-0.6101) mvmt=(-0.0460,0.2102,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.1740,0.3122,1.0151) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,0.0722,0.9101) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,-2.1391,-0.4399) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9990,4.4602,-0.5901) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9990,4.4602,-0.6101) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.040,93.410) lpos=(-10.999,4.460,-0.610) lprev=(-10.953,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9990,4.4602,-0.6101) mvmt=(-0.0460,0.2102,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.1740,0.3122,1.0151) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,0.0722,0.9101) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,-2.1391,-0.4399) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9990,4.4602,-0.5901) mvmt=(-0.0460,0.2102,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9990,4.2500,-0.8275) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.250,93.192) lpos=(-10.999,4.250,-0.828) lprev=(-10.953,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1740,0.1020,0.7977) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,-0.1380,0.6927) mvmt=(-0.0460,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,-2.3493,-0.6573) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9990,4.2500,-0.8075) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9990,4.2500,-1.5775) mvmt=(-0.0460,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.250,92.442) lpos=(-10.999,4.250,-1.578) lprev=(-10.953,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1740,0.1020,0.0477) mvmt=(-0.0460,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,-0.1380,-0.0573) mvmt=(-0.0460,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1990,-0.1380,-0.0573) out=(-0.1990,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9990,4.2500,-0.8275) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,7.250,93.192) lpos=(-10.999,4.250,-0.828) lprev=(-10.953,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1740,0.1020,0.7977) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,-0.1380,0.6927) mvmt=(-0.0460,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1990,-2.3493,-0.6573) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9990,4.2500,-0.8075) mvmt=(-0.0460,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0447,4.4591,-0.6112) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.041,93.409) lpos=(-11.045,4.459,-0.611) lprev=(-10.999,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0447,4.4591,-0.6112) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2197,0.3111,1.0140) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2447,0.0711,0.9090) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2447,-2.1402,-0.4410) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0447,4.4591,-0.5912) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0447,4.4591,-0.6112) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.041,93.409) lpos=(-11.045,4.459,-0.611) lprev=(-10.999,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0447,4.4591,-0.6112) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2197,0.3111,1.0140) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2447,0.0711,0.9090) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2447,-2.1402,-0.4410) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0447,4.4591,-0.5912) mvmt=(-0.0457,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0447,4.2500,-0.8275) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.250,93.192) lpos=(-11.045,4.250,-0.828) lprev=(-10.999,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2197,0.1020,0.7977) 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.2447,-0.1380,0.6927) 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.2447,-2.3493,-0.6573) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0447,4.2500,-0.8075) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0447,4.2500,-1.5775) mvmt=(-0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.250,92.442) lpos=(-11.045,4.250,-1.578) lprev=(-10.999,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2197,0.1020,0.0477) 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.2447,-0.1380,-0.0573) 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.2447,-0.1380,-0.0573) out=(-0.2447,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0447,4.2500,-0.8275) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.250,93.192) lpos=(-11.045,4.250,-0.828) lprev=(-10.999,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2197,0.1020,0.7977) 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.2447,-0.1380,0.6927) 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.2447,-2.3493,-0.6573) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0447,4.2500,-0.8075) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0902,4.4579,-0.6125) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.042,93.408) lpos=(-11.090,4.458,-0.612) lprev=(-11.045,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4579,-0.6125) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2652,0.3098,1.0127) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0698,0.9077) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1414,-0.4423) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4579,-0.5925) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4579,-0.6125) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.042,93.408) lpos=(-11.090,4.458,-0.612) lprev=(-11.045,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4579,-0.6125) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2652,0.3098,1.0127) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0698,0.9077) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1414,-0.4423) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4579,-0.5925) mvmt=(-0.0455,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.2500,-0.8275) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.250,93.192) lpos=(-11.090,4.250,-0.828) lprev=(-11.045,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2652,0.1020,0.7977) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-0.1380,0.6927) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.3493,-0.6573) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.2500,-0.8075) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.2500,-1.5775) mvmt=(-0.0455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.250,92.442) lpos=(-11.090,4.250,-1.578) lprev=(-11.045,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2652,0.1020,0.0477) mvmt=(-0.0455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-0.1380,-0.0573) mvmt=(-0.0455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2902,-0.1380,-0.0573) out=(-0.2902,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0902,4.2500,-0.8275) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.250,93.192) lpos=(-11.090,4.250,-0.828) lprev=(-11.045,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2652,0.1020,0.7977) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-0.1380,0.6927) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.3493,-0.6573) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.2500,-0.8075) mvmt=(-0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1360,4.4596,-0.6107) mvmt=(-0.0458,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1360,4.4596,-0.6107) mvmt=(-0.0458,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.636,7.040,93.409) lpos=(-11.136,4.460,-0.611) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1360,4.4596,-0.6107) mvmt=(-0.0458,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.3111,0.3115,1.0145) mvmt=(-0.0458,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3360,0.0715,0.9095) mvmt=(-0.0458,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3360,-2.1397,-0.4405) mvmt=(-0.0458,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1360,4.4596,-0.5907) mvmt=(-0.0458,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.636,7.040,93.409) lpos=(-11.136,4.460,-0.611) lprev=(-11.090,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4596,-0.6107) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.040,93.409) lpos=(-11.090,4.460,-0.611) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4596,-0.6107) mvmt=(0.0000,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.2652,0.3115,1.0145) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0715,0.9095) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1397,-0.4405) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4596,-0.5907) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4596,-0.6107) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.040,93.409) lpos=(-11.090,4.460,-0.611) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4596,-0.6107) mvmt=(0.0000,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.2652,0.3115,1.0145) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0715,0.9095) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1397,-0.4405) mvmt=(0.0000,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4596,-0.5907) mvmt=(0.0000,0.2096,0.2168) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1347,4.4533,-0.6173) mvmt=(-0.0445,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1347,4.4533,-0.6173) mvmt=(-0.0445,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,7.047,93.403) lpos=(-11.135,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1347,4.4533,-0.6173) mvmt=(-0.0445,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3097,0.3052,1.0079) mvmt=(-0.0445,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3347,0.0652,0.9029) mvmt=(-0.0445,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3347,-2.1461,-0.4471) mvmt=(-0.0445,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1347,4.4533,-0.5973) mvmt=(-0.0445,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,7.047,93.403) lpos=(-11.135,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.047,93.403) lpos=(-11.090,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2652,0.3052,1.0079) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0652,0.9029) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1461,-0.4471) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4533,-0.5973) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.047,93.403) lpos=(-11.090,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2652,0.3052,1.0079) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0652,0.9029) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1461,-0.4471) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4533,-0.5973) mvmt=(0.0000,0.2032,0.2102) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1347,4.4535,-0.6171) mvmt=(-0.0445,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1347,4.4535,-0.6171) mvmt=(-0.0445,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,7.047,93.403) lpos=(-11.135,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1347,4.4535,-0.6171) mvmt=(-0.0445,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3097,0.3054,1.0081) mvmt=(-0.0445,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3347,0.0654,0.9032) mvmt=(-0.0445,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3347,-2.1458,-0.4469) mvmt=(-0.0445,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1347,4.4535,-0.5971) mvmt=(-0.0445,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,7.047,93.403) lpos=(-11.135,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4535,-0.6171) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.047,93.403) lpos=(-11.090,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4535,-0.6171) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2652,0.3054,1.0081) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0654,0.9032) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1458,-0.4469) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4535,-0.5971) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4535,-0.6171) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.047,93.403) lpos=(-11.090,4.453,-0.617) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0902,4.4535,-0.6171) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2652,0.3054,1.0081) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,0.0654,0.9032) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2902,-2.1458,-0.4469) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0902,4.4535,-0.5971) mvmt=(0.0000,0.2035,0.2105) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1029,4.4628,-0.6074) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.037,93.413) lpos=(-11.103,4.463,-0.607) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1029,4.4628,-0.6074) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2779,0.3147,1.0178) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,0.0747,0.9128) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,-2.1365,-0.4372) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1029,4.4628,-0.5874) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1029,4.4628,-0.6074) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.037,93.413) lpos=(-11.103,4.463,-0.607) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1029,4.4628,-0.6074) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2779,0.3147,1.0178) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,0.0747,0.9128) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,-2.1365,-0.4372) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1029,4.4628,-0.5874) mvmt=(-0.0127,0.2127,0.2201) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1029,4.2500,-0.8275) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.250,93.192) lpos=(-11.103,4.250,-0.828) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2779,0.1020,0.7977) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,-0.1380,0.6927) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,-2.3493,-0.6573) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1029,4.2500,-0.8075) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1029,4.2500,-1.5775) mvmt=(-0.0127,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.250,92.442) lpos=(-11.103,4.250,-1.578) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2779,0.1020,0.0477) mvmt=(-0.0127,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,-0.1380,-0.0573) mvmt=(-0.0127,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3029,-0.1380,-0.0573) out=(-0.3029,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.1029,4.2500,-0.8275) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.250,93.192) lpos=(-11.103,4.250,-0.828) lprev=(-11.090,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2779,0.1020,0.7977) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,-0.1380,0.6927) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3029,-2.3493,-0.6573) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1029,4.2500,-0.8075) mvmt=(-0.0127,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0806,4.4501,-0.6206) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.050,93.399) lpos=(-11.081,4.450,-0.621) lprev=(-11.103,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0806,4.4501,-0.6206) mvmt=(0.0222,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=(-1.2556,0.3020,1.0046) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,0.0620,0.8996) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,-2.1493,-0.4504) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0806,4.4501,-0.6006) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0806,4.4501,-0.6206) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.050,93.399) lpos=(-11.081,4.450,-0.621) lprev=(-11.103,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0806,4.4501,-0.6206) mvmt=(0.0222,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=(-1.2556,0.3020,1.0046) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,0.0620,0.8996) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,-2.1493,-0.4504) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0806,4.4501,-0.6006) mvmt=(0.0222,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0806,4.2500,-0.8275) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.250,93.192) lpos=(-11.081,4.250,-0.828) lprev=(-11.103,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2556,0.1020,0.7977) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,-0.1380,0.6927) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,-2.3493,-0.6573) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0806,4.2500,-0.8075) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0806,4.2500,-1.5775) mvmt=(0.0222,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.250,92.442) lpos=(-11.081,4.250,-1.578) lprev=(-11.103,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2556,0.1020,0.0477) mvmt=(0.0222,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,-0.1380,-0.0573) mvmt=(0.0222,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2806,-0.1380,-0.0573) out=(-0.2806,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0806,4.2500,-0.8275) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.581,7.250,93.192) lpos=(-11.081,4.250,-0.828) lprev=(-11.103,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2556,0.1020,0.7977) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,-0.1380,0.6927) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2806,-2.3493,-0.6573) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0806,4.2500,-0.8075) mvmt=(0.0222,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0243,4.4486,-0.6221) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.051,93.398) lpos=(-11.024,4.449,-0.622) lprev=(-11.081,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0243,4.4486,-0.6221) mvmt=(0.0563,0.1986,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.1993,0.3006,1.0031) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,0.0606,0.8981) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,-2.1507,-0.4519) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0243,4.4486,-0.6021) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0243,4.4486,-0.6221) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.051,93.398) lpos=(-11.024,4.449,-0.622) lprev=(-11.081,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0243,4.4486,-0.6221) mvmt=(0.0563,0.1986,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.1993,0.3006,1.0031) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,0.0606,0.8981) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,-2.1507,-0.4519) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0243,4.4486,-0.6021) mvmt=(0.0563,0.1986,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0243,4.2500,-0.8275) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.250,93.192) lpos=(-11.024,4.250,-0.828) lprev=(-11.081,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1993,0.1020,0.7977) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,-0.1380,0.6927) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,-2.3493,-0.6573) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0243,4.2500,-0.8075) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0243,4.2500,-1.5775) mvmt=(0.0563,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.250,92.442) lpos=(-11.024,4.250,-1.578) lprev=(-11.081,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1993,0.1020,0.0477) mvmt=(0.0563,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,-0.1380,-0.0573) mvmt=(0.0563,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2243,-0.1380,-0.0573) out=(-0.2243,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0243,4.2500,-0.8275) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.524,7.250,93.192) lpos=(-11.024,4.250,-0.828) lprev=(-11.081,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1993,0.1020,0.7977) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,-0.1380,0.6927) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2243,-2.3493,-0.6573) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0243,4.2500,-0.8075) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9388,4.4385,-0.6325) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.061,93.387) lpos=(-10.939,4.439,-0.633) lprev=(-11.024,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9388,4.4385,-0.6325) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1138,0.2905,0.9927) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,0.0505,0.8877) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,-2.1608,-0.4623) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9388,4.4385,-0.6125) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9388,4.4385,-0.6325) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.061,93.387) lpos=(-10.939,4.439,-0.633) lprev=(-11.024,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9388,4.4385,-0.6325) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1138,0.2905,0.9927) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,0.0505,0.8877) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,-2.1608,-0.4623) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9388,4.4385,-0.6125) mvmt=(0.0855,0.1885,0.1950) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9388,4.2500,-0.8275) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.250,93.192) lpos=(-10.939,4.250,-0.828) lprev=(-11.024,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1138,0.1020,0.7977) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,-0.1380,0.6927) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,-2.3493,-0.6573) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9388,4.2500,-0.8075) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9388,4.2500,-1.5775) mvmt=(0.0855,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.250,92.442) lpos=(-10.939,4.250,-1.578) lprev=(-11.024,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1138,0.1020,0.0477) mvmt=(0.0855,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,-0.1380,-0.0573) mvmt=(0.0855,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1388,-0.1380,-0.0573) out=(-0.1388,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9388,4.2500,-0.8275) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.250,93.192) lpos=(-10.939,4.250,-0.828) lprev=(-11.024,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1138,0.1020,0.7977) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,-0.1380,0.6927) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1388,-2.3493,-0.6573) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9388,4.2500,-0.8075) mvmt=(0.0855,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8196,4.4384,-0.6326) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.062,93.387) lpos=(-10.820,4.438,-0.633) lprev=(-10.939,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8196,4.4384,-0.6326) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9946,0.2904,0.9926) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,0.0504,0.8876) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,-2.1609,-0.4624) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8196,4.4384,-0.6126) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8196,4.4384,-0.6326) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.062,93.387) lpos=(-10.820,4.438,-0.633) lprev=(-10.939,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8196,4.4384,-0.6326) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9946,0.2904,0.9926) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,0.0504,0.8876) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,-2.1609,-0.4624) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8196,4.4384,-0.6126) mvmt=(0.1192,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8196,4.2500,-0.8275) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.250,93.192) lpos=(-10.820,4.250,-0.828) lprev=(-10.939,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9946,0.1020,0.7977) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,-0.1380,0.6927) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,-2.3493,-0.6573) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8196,4.2500,-0.8075) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8196,4.2500,-1.5775) mvmt=(0.1192,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.250,92.442) lpos=(-10.820,4.250,-1.578) lprev=(-10.939,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9946,0.1020,0.0477) mvmt=(0.1192,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,-0.1380,-0.0573) mvmt=(0.1192,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0196,-0.1380,-0.0573) out=(-0.0196,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8196,4.2500,-0.8275) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.250,93.192) lpos=(-10.820,4.250,-0.828) lprev=(-10.939,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9946,0.1020,0.7977) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,-0.1380,0.6927) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0196,-2.3493,-0.6573) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8196,4.2500,-0.8075) mvmt=(0.1192,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6778,4.4418,-0.6291) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,7.058,93.391) lpos=(-10.678,4.442,-0.629) lprev=(-10.820,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6778,4.4418,-0.6291) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8528,0.2937,0.9961) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,0.0537,0.8911) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,-2.1575,-0.4589) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6778,4.4418,-0.6091) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6778,4.4418,-0.6291) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,7.058,93.391) lpos=(-10.678,4.442,-0.629) lprev=(-10.820,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6778,4.4418,-0.6291) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8528,0.2937,0.9961) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,0.0537,0.8911) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,-2.1575,-0.4589) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6778,4.4418,-0.6091) mvmt=(0.1418,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6778,4.2500,-0.8275) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,7.250,93.192) lpos=(-10.678,4.250,-0.828) lprev=(-10.820,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8528,0.1020,0.7977) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,-0.1380,0.6927) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,-2.3493,-0.6573) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6778,4.2500,-0.8075) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6778,4.2500,-1.5775) mvmt=(0.1418,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,7.250,92.442) lpos=(-10.678,4.250,-1.578) lprev=(-10.820,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8528,0.1020,0.0477) mvmt=(0.1418,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,-0.1380,-0.0573) mvmt=(0.1418,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1222,-0.1380,-0.0573) out=(0.1222,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6778,4.2500,-0.8275) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.178,7.250,93.192) lpos=(-10.678,4.250,-0.828) lprev=(-10.820,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8528,0.1020,0.7977) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,-0.1380,0.6927) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1222,-2.3493,-0.6573) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6778,4.2500,-0.8075) mvmt=(0.1418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5429,4.4325,-0.6387) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.067,93.381) lpos=(-10.543,4.433,-0.639) lprev=(-10.678,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5429,4.4325,-0.6387) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7179,0.2845,0.9865) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,0.0445,0.8815) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,-2.1668,-0.4685) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3298,-2.9161,2.3858) mvmt=(-0.1149,0.1957,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5429,4.4325,-0.6187) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5429,4.4325,-0.6387) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.067,93.381) lpos=(-10.543,4.433,-0.639) lprev=(-10.678,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5429,4.4325,-0.6387) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7179,0.2845,0.9865) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,0.0445,0.8815) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,-2.1668,-0.4685) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3298,-2.9161,2.3858) mvmt=(-0.1149,0.1957,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5429,4.4325,-0.6187) mvmt=(0.1349,0.1825,0.1888) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5429,4.2500,-0.8275) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.250,93.192) lpos=(-10.543,4.250,-0.828) lprev=(-10.678,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7179,0.1020,0.7977) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,-0.1380,0.6927) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,-2.3493,-0.6573) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5429,4.2500,-0.8075) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5429,4.2500,-1.5775) mvmt=(0.1349,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.250,92.442) lpos=(-10.543,4.250,-1.578) lprev=(-10.678,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7179,0.1020,0.0477) mvmt=(0.1349,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,-0.1380,-0.0573) mvmt=(0.1349,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2571,-0.1380,-0.0573) out=(0.2571,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5429,4.2500,-0.8275) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.250,93.192) lpos=(-10.543,4.250,-0.828) lprev=(-10.678,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7179,0.1020,0.7977) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,-0.1380,0.6927) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2571,-2.3493,-0.6573) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5429,4.2500,-0.8075) mvmt=(0.1349,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4098,4.4302,-0.6412) mvmt=(0.1331,0.1801,0.1863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4098,4.4302,-0.6412) mvmt=(0.1331,0.1801,0.1863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.070,93.379) lpos=(-10.410,4.430,-0.641) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4098,4.4302,-0.6412) mvmt=(0.1331,0.1801,0.1863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5848,0.2821,0.9840) mvmt=(0.1331,0.1801,0.1863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5848,0.2821,0.9840) out=(-0.5848,0.2821,1.3109) delta=(0.0000,0.0000,0.3269) deltaMag=0.3269 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4551 dpPos=0.2488 dpMove=-0.4243 iDist=0.5449 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.4098,4.4302,-0.3143) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.070,93.706) lpos=(-10.410,4.430,-0.314) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4098,4.4302,-0.3143) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 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.4098,4.4302,-0.3143) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5848,0.2821,1.3109) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[push-back-disp] site=dispatch center=(0.3902,0.0421,1.2059) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[push-back-disp] site=dispatch center=(0.3902,-2.1692,-0.1441) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[push-back-disp] site=dispatch center=(0.3842,-2.7946,2.7102) mvmt=(-0.1134,0.1931,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[push-back-disp] site=dispatch center=(-10.4098,4.4302,-0.2943) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[push-back-disp] site=dispatch center=(-10.4098,4.4302,-0.3143) mvmt=(0.1331,0.1801,0.5133) collide=False insertType=1 objState=0x303 winterp=0.4551 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.070,93.706) lpos=(-10.410,4.430,-0.314) lprev=(-10.543,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.070,93.379) lpos=(-10.410,4.430,-0.641) lprev=(-10.543,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4098,4.2500,-0.8275) mvmt=(0.1331,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.250,93.192) lpos=(-10.410,4.250,-0.828) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5848,0.1020,0.7977) mvmt=(0.1331,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4551 return=-1 +[push-back-disp] site=dispatch center=(-10.4098,4.2500,-0.8275) mvmt=(0.1331,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.250,93.192) lpos=(-10.410,4.250,-0.828) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5848,0.1020,0.7977) mvmt=(0.1331,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5848,0.1020,0.7977) out=(-0.5848,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4098,4.2500,-0.4944) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.250,93.526) lpos=(-10.410,4.250,-0.494) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4098,4.2500,-0.4944) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.4098,4.2500,-0.4944) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5848,0.1020,1.1308) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.3902,-0.1380,1.0258) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.3902,-2.3493,-0.3242) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5499,-2.8653,2.5301) mvmt=(0.0522,0.1225,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.4098,4.2500,-0.4744) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.4098,4.2500,-0.4944) mvmt=(0.1331,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.250,93.526) lpos=(-10.410,4.250,-0.494) lprev=(-10.543,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5490,4.4680,-0.4753) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.049,7.032,93.545) lpos=(-10.549,4.468,-0.475) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5490,4.4680,-0.4753) mvmt=(-0.0061,0.2179,0.3523) 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.5490,4.4680,-0.4753) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7240,0.3199,1.1499) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,0.0799,1.0449) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,-2.1313,-0.3051) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2948,-2.9078,2.5492) mvmt=(-0.2029,0.0799,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5490,4.4680,-0.4553) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5490,4.4680,-0.4753) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.049,7.032,93.545) lpos=(-10.549,4.468,-0.475) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5490,4.4680,-0.4753) mvmt=(-0.0061,0.2179,0.3523) 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.5490,4.4680,-0.4753) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7240,0.3199,1.1499) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,0.0799,1.0449) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,-2.1313,-0.3051) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2948,-2.9078,2.5492) mvmt=(-0.2029,0.0799,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5490,4.4680,-0.4553) mvmt=(-0.0061,0.2179,0.3523) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5490,4.2500,-0.8275) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.049,7.250,93.192) lpos=(-10.549,4.250,-0.828) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7240,0.1020,0.7977) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,-0.1380,0.6927) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,-2.3493,-0.6573) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5490,4.2500,-0.8075) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5490,4.2500,-1.5775) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.049,7.250,92.442) lpos=(-10.549,4.250,-1.578) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7240,0.1020,0.0477) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,-0.1380,-0.0573) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2510,-0.1380,-0.0573) out=(0.2510,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.5490,4.2500,-0.8275) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.049,7.250,93.192) lpos=(-10.549,4.250,-0.828) lprev=(-10.543,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7240,0.1020,0.7977) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,-0.1380,0.6927) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2510,-2.3493,-0.6573) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5490,4.2500,-0.8075) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5549,4.4531,-0.6174) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.047,93.403) lpos=(-10.555,4.453,-0.617) lprev=(-10.549,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5549,4.4531,-0.6174) mvmt=(-0.0059,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=(-0.7299,0.3051,1.0078) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,0.0651,0.9028) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,-2.1462,-0.4472) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3062,-2.9191,2.4071) mvmt=(-0.1891,0.0743,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5549,4.4531,-0.5974) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5549,4.4531,-0.6174) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.047,93.403) lpos=(-10.555,4.453,-0.617) lprev=(-10.549,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5549,4.4531,-0.6174) mvmt=(-0.0059,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=(-0.7299,0.3051,1.0078) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,0.0651,0.9028) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,-2.1462,-0.4472) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3062,-2.9191,2.4071) mvmt=(-0.1891,0.0743,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5549,4.4531,-0.5974) mvmt=(-0.0059,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5549,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.250,93.192) lpos=(-10.555,4.250,-0.828) lprev=(-10.549,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7299,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5549,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5549,4.2500,-1.5775) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.250,92.442) lpos=(-10.555,4.250,-1.578) lprev=(-10.549,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7299,0.1020,0.0477) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,-0.1380,-0.0573) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2451,-0.1380,-0.0573) out=(0.2451,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5549,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.250,93.192) lpos=(-10.555,4.250,-0.828) lprev=(-10.549,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7299,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2451,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5549,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5608,4.4530,-0.6175) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.047,93.402) lpos=(-10.561,4.453,-0.618) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5608,4.4530,-0.6175) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7358,0.3050,1.0077) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,0.0650,0.9027) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,-2.1463,-0.4473) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3039,-2.9245,2.4070) mvmt=(-0.1890,0.0742,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5608,4.4530,-0.5975) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5608,4.4530,-0.6175) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.047,93.402) lpos=(-10.561,4.453,-0.618) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5608,4.4530,-0.6175) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7358,0.3050,1.0077) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,0.0650,0.9027) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,-2.1463,-0.4473) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3039,-2.9245,2.4070) mvmt=(-0.1890,0.0742,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5608,4.4530,-0.5975) mvmt=(-0.0059,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5608,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.250,93.192) lpos=(-10.561,4.250,-0.828) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7358,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5608,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5608,4.2500,-1.5775) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.250,92.442) lpos=(-10.561,4.250,-1.578) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7358,0.1020,0.0477) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,-0.1380,-0.0573) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2392,-0.1380,-0.0573) out=(0.2392,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5608,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.061,7.250,93.192) lpos=(-10.561,4.250,-0.828) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7358,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2392,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5608,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5665,4.4473,-0.6235) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.053,93.397) lpos=(-10.567,4.447,-0.623) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5665,4.4473,-0.6235) mvmt=(-0.0057,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.7415,0.2992,1.0017) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,0.0592,0.8967) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,-2.1520,-0.4533) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3070,-2.9321,2.4010) mvmt=(-0.1837,0.0721,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5665,4.4473,-0.6035) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5665,4.4473,-0.6235) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.053,93.397) lpos=(-10.567,4.447,-0.623) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5665,4.4473,-0.6235) mvmt=(-0.0057,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.7415,0.2992,1.0017) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,0.0592,0.8967) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,-2.1520,-0.4533) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3070,-2.9321,2.4010) mvmt=(-0.1837,0.0721,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5665,4.4473,-0.6035) mvmt=(-0.0057,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5665,4.2500,-0.8275) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.250,93.192) lpos=(-10.567,4.250,-0.828) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7415,0.1020,0.7977) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,-0.1380,0.6927) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,-2.3493,-0.6573) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5665,4.2500,-0.8075) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5665,4.2500,-1.5775) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.250,92.442) lpos=(-10.567,4.250,-1.578) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7415,0.1020,0.0477) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,-0.1380,-0.0573) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2335,-0.1380,-0.0573) out=(0.2335,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5665,4.2500,-0.8275) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.067,7.250,93.192) lpos=(-10.567,4.250,-0.828) lprev=(-10.561,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7415,0.1020,0.7977) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,-0.1380,0.6927) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2335,-2.3493,-0.6573) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5665,4.2500,-0.8075) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5725,4.4550,-0.6155) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.072,7.045,93.404) lpos=(-10.572,4.455,-0.616) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5725,4.4550,-0.6155) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7475,0.3069,1.0097) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,0.0669,0.9047) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,-2.1443,-0.4453) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2976,-2.9345,2.4090) mvmt=(-0.1908,0.0749,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5725,4.4550,-0.5955) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5725,4.4550,-0.6155) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.072,7.045,93.404) lpos=(-10.572,4.455,-0.616) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5725,4.4550,-0.6155) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7475,0.3069,1.0097) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,0.0669,0.9047) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,-2.1443,-0.4453) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2976,-2.9345,2.4090) mvmt=(-0.1908,0.0749,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5725,4.4550,-0.5955) mvmt=(-0.0059,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5725,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.072,7.250,93.192) lpos=(-10.572,4.250,-0.828) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7475,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5725,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5725,4.2500,-1.5775) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.072,7.250,92.442) lpos=(-10.572,4.250,-1.578) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7475,0.1020,0.0477) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,-0.1380,-0.0573) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2275,-0.1380,-0.0573) out=(0.2275,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5725,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.072,7.250,93.192) lpos=(-10.572,4.250,-0.828) lprev=(-10.567,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7475,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2275,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5725,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5783,4.4499,-0.6208) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.050,93.399) lpos=(-10.578,4.450,-0.621) lprev=(-10.572,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5783,4.4499,-0.6208) mvmt=(-0.0058,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=(-0.7533,0.3018,1.0044) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,0.0618,0.8994) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.1494,-0.4506) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3000,-2.9418,2.4037) mvmt=(-0.1861,0.0731,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.4499,-0.6008) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.4499,-0.6208) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.050,93.399) lpos=(-10.578,4.450,-0.621) lprev=(-10.572,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5783,4.4499,-0.6208) mvmt=(-0.0058,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=(-0.7533,0.3018,1.0044) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,0.0618,0.8994) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.1494,-0.4506) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3000,-2.9418,2.4037) mvmt=(-0.1861,0.0731,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.4499,-0.6008) mvmt=(-0.0058,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.250,93.192) lpos=(-10.578,4.250,-0.828) lprev=(-10.572,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7533,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2500,-1.5775) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.250,92.442) lpos=(-10.578,4.250,-1.578) lprev=(-10.572,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7533,0.1020,0.0477) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-0.1380,-0.0573) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2217,-0.1380,-0.0573) out=(0.2217,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.250,93.192) lpos=(-10.578,4.250,-0.828) lprev=(-10.572,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7533,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5841,4.4506,-0.6201) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.049,93.400) lpos=(-10.584,4.451,-0.620) lprev=(-10.578,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5841,4.4506,-0.6201) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7591,0.3025,1.0051) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,0.0625,0.9001) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,-2.1487,-0.4499) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2971,-2.9469,2.4044) mvmt=(-0.1867,0.0733,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5841,4.4506,-0.6001) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5841,4.4506,-0.6201) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.049,93.400) lpos=(-10.584,4.451,-0.620) lprev=(-10.578,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5841,4.4506,-0.6201) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7591,0.3025,1.0051) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,0.0625,0.9001) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,-2.1487,-0.4499) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2971,-2.9469,2.4044) mvmt=(-0.1867,0.0733,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5841,4.4506,-0.6001) mvmt=(-0.0058,0.2005,0.2075) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5841,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.250,93.192) lpos=(-10.584,4.250,-0.828) lprev=(-10.578,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7591,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5841,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5841,4.2500,-1.5775) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.250,92.442) lpos=(-10.584,4.250,-1.578) lprev=(-10.578,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7591,0.1020,0.0477) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,-0.1380,-0.0573) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2159,-0.1380,-0.0573) out=(0.2159,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5841,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.250,93.192) lpos=(-10.584,4.250,-0.828) lprev=(-10.578,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7591,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2159,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5841,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5898,4.4484,-0.6223) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.090,7.052,93.398) lpos=(-10.590,4.448,-0.622) lprev=(-10.584,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5898,4.4484,-0.6223) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7648,0.3003,1.0029) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,0.0603,0.8979) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-2.1509,-0.4521) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2968,-2.9531,2.4022) mvmt=(-0.1847,0.0725,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5898,4.4484,-0.6023) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5898,4.4484,-0.6223) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.090,7.052,93.398) lpos=(-10.590,4.448,-0.622) lprev=(-10.584,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5898,4.4484,-0.6223) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7648,0.3003,1.0029) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,0.0603,0.8979) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-2.1509,-0.4521) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2968,-2.9531,2.4022) mvmt=(-0.1847,0.0725,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5898,4.4484,-0.6023) mvmt=(-0.0058,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5898,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.090,7.250,93.192) lpos=(-10.590,4.250,-0.828) lprev=(-10.584,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7648,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5898,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5898,4.2500,-1.5775) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.090,7.250,92.442) lpos=(-10.590,4.250,-1.578) lprev=(-10.584,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7648,0.1020,0.0477) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-0.1380,-0.0573) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2102,-0.1380,-0.0573) out=(0.2102,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5898,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.090,7.250,93.192) lpos=(-10.590,4.250,-0.828) lprev=(-10.584,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7648,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5898,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5957,4.4533,-0.6173) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.096,7.047,93.403) lpos=(-10.596,4.453,-0.617) lprev=(-10.590,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5957,4.4533,-0.6173) mvmt=(-0.0059,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=(-0.7707,0.3052,1.0079) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,0.0652,0.9029) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,-2.1460,-0.4471) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2900,-2.9566,2.4072) mvmt=(-0.1893,0.0743,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5957,4.4533,-0.5973) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5957,4.4533,-0.6173) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.096,7.047,93.403) lpos=(-10.596,4.453,-0.617) lprev=(-10.590,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5957,4.4533,-0.6173) mvmt=(-0.0059,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=(-0.7707,0.3052,1.0079) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,0.0652,0.9029) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,-2.1460,-0.4471) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2900,-2.9566,2.4072) mvmt=(-0.1893,0.0743,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5957,4.4533,-0.5973) mvmt=(-0.0059,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5957,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.096,7.250,93.192) lpos=(-10.596,4.250,-0.828) lprev=(-10.590,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7707,0.1020,0.7977) mvmt=(-0.0059,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5957,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5957,4.2500,-1.5775) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.096,7.250,92.442) lpos=(-10.596,4.250,-1.578) lprev=(-10.590,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7707,0.1020,0.0477) mvmt=(-0.0059,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,-0.1380,-0.0573) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2043,-0.1380,-0.0573) out=(0.2043,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5957,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.096,7.250,93.192) lpos=(-10.596,4.250,-0.828) lprev=(-10.590,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7707,0.1020,0.7977) mvmt=(-0.0059,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2043,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5957,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6015,4.4499,-0.6208) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.102,7.050,93.399) lpos=(-10.602,4.450,-0.621) lprev=(-10.596,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6015,4.4499,-0.6208) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7765,0.3019,1.0044) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,0.0619,0.8994) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,-2.1494,-0.4506) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2908,-2.9632,2.4037) mvmt=(-0.1861,0.0731,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6015,4.4499,-0.6008) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6015,4.4499,-0.6208) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.102,7.050,93.399) lpos=(-10.602,4.450,-0.621) lprev=(-10.596,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6015,4.4499,-0.6208) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7765,0.3019,1.0044) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,0.0619,0.8994) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,-2.1494,-0.4506) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2908,-2.9632,2.4037) mvmt=(-0.1861,0.0731,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6015,4.4499,-0.6008) mvmt=(-0.0058,0.1999,0.2068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6015,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.102,7.250,93.192) lpos=(-10.602,4.250,-0.828) lprev=(-10.596,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7765,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6015,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6015,4.2500,-1.5775) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.102,7.250,92.442) lpos=(-10.602,4.250,-1.578) lprev=(-10.596,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7765,0.1020,0.0477) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,-0.1380,-0.0573) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1985,-0.1380,-0.0573) out=(0.1985,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6015,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.102,7.250,93.192) lpos=(-10.602,4.250,-0.828) lprev=(-10.596,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7765,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1985,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6015,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6073,4.4485,-0.6222) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.051,93.398) lpos=(-10.607,4.449,-0.622) lprev=(-10.602,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6073,4.4485,-0.6222) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7823,0.3005,1.0030) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,0.0605,0.8980) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.1508,-0.4520) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2899,-2.9691,2.4023) mvmt=(-0.1848,0.0726,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.4485,-0.6022) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.4485,-0.6222) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.051,93.398) lpos=(-10.607,4.449,-0.622) lprev=(-10.602,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6073,4.4485,-0.6222) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7823,0.3005,1.0030) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,0.0605,0.8980) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.1508,-0.4520) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2899,-2.9691,2.4023) mvmt=(-0.1848,0.0726,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.4485,-0.6022) mvmt=(-0.0058,0.1985,0.2053) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.250,93.192) lpos=(-10.607,4.250,-0.828) lprev=(-10.602,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7823,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.2500,-1.5775) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.250,92.442) lpos=(-10.607,4.250,-1.578) lprev=(-10.602,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7823,0.1020,0.0477) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-0.1380,-0.0573) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1927,-0.1380,-0.0573) out=(0.1927,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6073,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.250,93.192) lpos=(-10.607,4.250,-0.828) lprev=(-10.602,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7823,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6130,4.4476,-0.6231) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.113,7.052,93.397) lpos=(-10.613,4.448,-0.623) lprev=(-10.607,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6130,4.4476,-0.6231) mvmt=(-0.0057,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.7880,0.2996,1.0021) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,0.0596,0.8971) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,-2.1517,-0.4529) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2884,-2.9747,2.4014) mvmt=(-0.1840,0.0723,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6130,4.4476,-0.6031) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6130,4.4476,-0.6231) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.113,7.052,93.397) lpos=(-10.613,4.448,-0.623) lprev=(-10.607,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6130,4.4476,-0.6231) mvmt=(-0.0057,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.7880,0.2996,1.0021) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,0.0596,0.8971) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,-2.1517,-0.4529) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2884,-2.9747,2.4014) mvmt=(-0.1840,0.0723,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6130,4.4476,-0.6031) mvmt=(-0.0057,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6130,4.2500,-0.8275) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.113,7.250,93.192) lpos=(-10.613,4.250,-0.828) lprev=(-10.607,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7880,0.1020,0.7977) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,-0.1380,0.6927) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,-2.3493,-0.6573) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6130,4.2500,-0.8075) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6130,4.2500,-1.5775) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.113,7.250,92.442) lpos=(-10.613,4.250,-1.578) lprev=(-10.607,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7880,0.1020,0.0477) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,-0.1380,-0.0573) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1870,-0.1380,-0.0573) out=(0.1870,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6130,4.2500,-0.8275) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.113,7.250,93.192) lpos=(-10.613,4.250,-0.828) lprev=(-10.607,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7880,0.1020,0.7977) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,-0.1380,0.6927) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1870,-2.3493,-0.6573) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6130,4.2500,-0.8075) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6187,4.4467,-0.6241) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.053,93.396) lpos=(-10.619,4.447,-0.624) lprev=(-10.613,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6187,4.4467,-0.6241) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7937,0.2987,1.0011) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,0.0587,0.8961) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,-2.1526,-0.4539) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2870,-2.9803,2.4004) mvmt=(-0.1832,0.0719,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6187,4.4467,-0.6041) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6187,4.4467,-0.6241) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.053,93.396) lpos=(-10.619,4.447,-0.624) lprev=(-10.613,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6187,4.4467,-0.6241) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7937,0.2987,1.0011) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,0.0587,0.8961) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,-2.1526,-0.4539) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2870,-2.9803,2.4004) mvmt=(-0.1832,0.0719,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6187,4.4467,-0.6041) mvmt=(-0.0057,0.1967,0.2035) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6187,4.2500,-0.8275) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.250,93.192) lpos=(-10.619,4.250,-0.828) lprev=(-10.613,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7937,0.1020,0.7977) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,-0.1380,0.6927) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,-2.3493,-0.6573) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6187,4.2500,-0.8075) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6187,4.2500,-1.5775) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.250,92.442) lpos=(-10.619,4.250,-1.578) lprev=(-10.613,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7937,0.1020,0.0477) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,-0.1380,-0.0573) mvmt=(-0.0057,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1813,-0.1380,-0.0573) out=(0.1813,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6187,4.2500,-0.8275) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.250,93.192) lpos=(-10.619,4.250,-0.828) lprev=(-10.613,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7937,0.1020,0.7977) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,-0.1380,0.6927) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1813,-2.3493,-0.6573) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6187,4.2500,-0.8075) mvmt=(-0.0057,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6243,4.4419,-0.6291) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.058,93.391) lpos=(-10.624,4.442,-0.629) lprev=(-10.619,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6243,4.4419,-0.6291) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7993,0.2938,0.9961) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,0.0538,0.8911) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,-2.1575,-0.4589) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2893,-2.9873,2.3954) mvmt=(-0.1786,0.0701,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6243,4.4419,-0.6091) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6243,4.4419,-0.6291) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.058,93.391) lpos=(-10.624,4.442,-0.629) lprev=(-10.619,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6243,4.4419,-0.6291) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7993,0.2938,0.9961) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,0.0538,0.8911) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,-2.1575,-0.4589) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2893,-2.9873,2.3954) mvmt=(-0.1786,0.0701,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6243,4.4419,-0.6091) mvmt=(-0.0056,0.1918,0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6243,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.250,93.192) lpos=(-10.624,4.250,-0.828) lprev=(-10.619,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7993,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6243,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6243,4.2500,-1.5775) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.250,92.442) lpos=(-10.624,4.250,-1.578) lprev=(-10.619,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7993,0.1020,0.0477) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,-0.1380,-0.0573) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1757,-0.1380,-0.0573) out=(0.1757,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6243,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.250,93.192) lpos=(-10.624,4.250,-0.828) lprev=(-10.619,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7993,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1757,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6243,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6301,4.4513,-0.6193) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.130,7.049,93.401) lpos=(-10.630,4.451,-0.619) lprev=(-10.624,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6301,4.4513,-0.6193) mvmt=(-0.0058,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=(-0.8051,0.3032,1.0059) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,0.0632,0.9009) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,-2.1480,-0.4491) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2784,-2.9890,2.4052) mvmt=(-0.1874,0.0736,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6301,4.4513,-0.5993) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6301,4.4513,-0.6193) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.130,7.049,93.401) lpos=(-10.630,4.451,-0.619) lprev=(-10.624,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6301,4.4513,-0.6193) mvmt=(-0.0058,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=(-0.8051,0.3032,1.0059) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,0.0632,0.9009) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,-2.1480,-0.4491) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2784,-2.9890,2.4052) mvmt=(-0.1874,0.0736,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6301,4.4513,-0.5993) mvmt=(-0.0058,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6301,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.130,7.250,93.192) lpos=(-10.630,4.250,-0.828) lprev=(-10.624,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8051,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,-0.1380,0.6927) mvmt=(-0.0058,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6301,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6301,4.2500,-1.5775) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.130,7.250,92.442) lpos=(-10.630,4.250,-1.578) lprev=(-10.624,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8051,0.1020,0.0477) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,-0.1380,-0.0573) mvmt=(-0.0058,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1699,-0.1380,-0.0573) out=(0.1699,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6301,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.130,7.250,93.192) lpos=(-10.630,4.250,-0.828) lprev=(-10.624,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8051,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,-0.1380,0.6927) mvmt=(-0.0058,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1699,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6301,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6359,4.4496,-0.6211) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.050,93.399) lpos=(-10.636,4.450,-0.621) lprev=(-10.630,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6359,4.4496,-0.6211) mvmt=(-0.0058,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=(-0.8109,0.3015,1.0041) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,0.0615,0.8991) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,-2.1497,-0.4509) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2777,-2.9949,2.4034) mvmt=(-0.1858,0.0730,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6359,4.4496,-0.6011) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6359,4.4496,-0.6211) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.050,93.399) lpos=(-10.636,4.450,-0.621) lprev=(-10.630,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6359,4.4496,-0.6211) mvmt=(-0.0058,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=(-0.8109,0.3015,1.0041) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,0.0615,0.8991) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,-2.1497,-0.4509) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2777,-2.9949,2.4034) mvmt=(-0.1858,0.0730,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6359,4.4496,-0.6011) mvmt=(-0.0058,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6359,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.250,93.192) lpos=(-10.636,4.250,-0.828) lprev=(-10.630,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8109,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6359,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6359,4.2500,-1.5775) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.250,92.442) lpos=(-10.636,4.250,-1.578) lprev=(-10.630,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8109,0.1020,0.0477) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,-0.1380,-0.0573) mvmt=(-0.0058,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1641,-0.1380,-0.0573) out=(0.1641,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6359,4.2500,-0.8275) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.250,93.192) lpos=(-10.636,4.250,-0.828) lprev=(-10.630,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8109,0.1020,0.7977) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,-0.1380,0.6927) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1641,-2.3493,-0.6573) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6359,4.2500,-0.8075) mvmt=(-0.0058,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6415,4.4432,-0.6277) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.141,7.057,93.392) lpos=(-10.641,4.443,-0.628) lprev=(-10.636,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6415,4.4432,-0.6277) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8165,0.2951,0.9975) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,0.0551,0.8925) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-2.1562,-0.4575) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2814,-3.0026,2.3968) mvmt=(-0.1798,0.0706,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6415,4.4432,-0.6077) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6415,4.4432,-0.6277) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.141,7.057,93.392) lpos=(-10.641,4.443,-0.628) lprev=(-10.636,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6415,4.4432,-0.6277) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8165,0.2951,0.9975) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,0.0551,0.8925) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-2.1562,-0.4575) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2814,-3.0026,2.3968) mvmt=(-0.1798,0.0706,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6415,4.4432,-0.6077) mvmt=(-0.0056,0.1931,0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6415,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.141,7.250,93.192) lpos=(-10.641,4.250,-0.828) lprev=(-10.636,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8165,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6415,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6415,4.2500,-1.5775) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.141,7.250,92.442) lpos=(-10.641,4.250,-1.578) lprev=(-10.636,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8165,0.1020,0.0477) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-0.1380,-0.0573) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1585,-0.1380,-0.0573) out=(0.1585,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6415,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.141,7.250,93.192) lpos=(-10.641,4.250,-0.828) lprev=(-10.636,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8165,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6415,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6473,4.4524,-0.6182) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.147,7.048,93.402) lpos=(-10.647,4.452,-0.618) lprev=(-10.641,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6473,4.4524,-0.6182) mvmt=(-0.0059,0.2023,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=(-0.8223,0.3043,1.0070) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,0.0643,0.9020) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-2.1469,-0.4480) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2706,-3.0044,2.4063) mvmt=(-0.1884,0.0740,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6473,4.4524,-0.5982) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6473,4.4524,-0.6182) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.147,7.048,93.402) lpos=(-10.647,4.452,-0.618) lprev=(-10.641,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6473,4.4524,-0.6182) mvmt=(-0.0059,0.2023,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=(-0.8223,0.3043,1.0070) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,0.0643,0.9020) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-2.1469,-0.4480) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2706,-3.0044,2.4063) mvmt=(-0.1884,0.0740,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6473,4.4524,-0.5982) mvmt=(-0.0059,0.2023,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6473,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.147,7.250,93.192) lpos=(-10.647,4.250,-0.828) lprev=(-10.641,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8223,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6473,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6473,4.2500,-1.5775) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.147,7.250,92.442) lpos=(-10.647,4.250,-1.578) lprev=(-10.641,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8223,0.1020,0.0477) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-0.1380,-0.0573) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1527,-0.1380,-0.0573) out=(0.1527,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6473,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.147,7.250,93.192) lpos=(-10.647,4.250,-0.828) lprev=(-10.641,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8223,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6473,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6529,4.4429,-0.6280) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.057,93.392) lpos=(-10.653,4.443,-0.628) lprev=(-10.647,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6529,4.4429,-0.6280) mvmt=(-0.0056,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=(-0.8279,0.2949,0.9972) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,0.0549,0.8922) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,-2.1564,-0.4578) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2771,-3.0132,2.3965) mvmt=(-0.1796,0.0705,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6529,4.4429,-0.6080) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6529,4.4429,-0.6280) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.057,93.392) lpos=(-10.653,4.443,-0.628) lprev=(-10.647,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6529,4.4429,-0.6280) mvmt=(-0.0056,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=(-0.8279,0.2949,0.9972) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,0.0549,0.8922) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,-2.1564,-0.4578) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2771,-3.0132,2.3965) mvmt=(-0.1796,0.0705,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6529,4.4429,-0.6080) mvmt=(-0.0056,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6529,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.250,93.192) lpos=(-10.653,4.250,-0.828) lprev=(-10.647,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8279,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6529,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6529,4.2500,-1.5775) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.250,92.442) lpos=(-10.653,4.250,-1.578) lprev=(-10.647,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8279,0.1020,0.0477) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,-0.1380,-0.0573) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1471,-0.1380,-0.0573) out=(0.1471,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6529,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.153,7.250,93.192) lpos=(-10.653,4.250,-0.828) lprev=(-10.647,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8279,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1471,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6529,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6588,4.4537,-0.6169) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.159,7.046,93.403) lpos=(-10.659,4.454,-0.617) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6588,4.4537,-0.6169) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8338,0.3056,1.0083) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,0.0656,0.9033) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,-2.1457,-0.4467) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2649,-3.0145,2.4076) mvmt=(-0.1896,0.0745,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6588,4.4537,-0.5969) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6588,4.4537,-0.6169) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.159,7.046,93.403) lpos=(-10.659,4.454,-0.617) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6588,4.4537,-0.6169) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8338,0.3056,1.0083) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,0.0656,0.9033) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,-2.1457,-0.4467) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2649,-3.0145,2.4076) mvmt=(-0.1896,0.0745,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6588,4.4537,-0.5969) mvmt=(-0.0059,0.2036,0.2106) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6588,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.159,7.250,93.192) lpos=(-10.659,4.250,-0.828) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8338,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6588,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6588,4.2500,-1.5775) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.159,7.250,92.442) lpos=(-10.659,4.250,-1.578) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8338,0.1020,0.0477) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,-0.1380,-0.0573) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1412,-0.1380,-0.0573) out=(0.1412,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6588,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.159,7.250,93.192) lpos=(-10.659,4.250,-0.828) lprev=(-10.653,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8338,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1412,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6588,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6645,4.4446,-0.6263) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.055,93.394) lpos=(-10.664,4.445,-0.626) lprev=(-10.659,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6645,4.4446,-0.6263) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8395,0.2965,0.9989) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,0.0565,0.8939) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,-2.1547,-0.4561) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2711,-3.0232,2.3982) mvmt=(-0.1811,0.0711,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6645,4.4446,-0.6063) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6645,4.4446,-0.6263) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.055,93.394) lpos=(-10.664,4.445,-0.626) lprev=(-10.659,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6645,4.4446,-0.6263) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8395,0.2965,0.9989) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,0.0565,0.8939) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,-2.1547,-0.4561) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2711,-3.0232,2.3982) mvmt=(-0.1811,0.0711,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6645,4.4446,-0.6063) mvmt=(-0.0056,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6645,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.250,93.192) lpos=(-10.664,4.250,-0.828) lprev=(-10.659,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8395,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6645,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6645,4.2500,-1.5775) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.250,92.442) lpos=(-10.664,4.250,-1.578) lprev=(-10.659,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8395,0.1020,0.0477) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,-0.1380,-0.0573) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1355,-0.1380,-0.0573) out=(0.1355,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6645,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.250,93.192) lpos=(-10.664,4.250,-0.828) lprev=(-10.659,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8395,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1355,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6645,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6701,4.4448,-0.6260) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.170,7.055,93.394) lpos=(-10.670,4.445,-0.626) lprev=(-10.664,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6701,4.4448,-0.6260) mvmt=(-0.0056,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=(-0.8451,0.2968,0.9992) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,0.0568,0.8942) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,-2.1545,-0.4558) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2686,-3.0283,2.3985) mvmt=(-0.1814,0.0712,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6701,4.4448,-0.6060) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6701,4.4448,-0.6260) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.170,7.055,93.394) lpos=(-10.670,4.445,-0.626) lprev=(-10.664,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6701,4.4448,-0.6260) mvmt=(-0.0056,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=(-0.8451,0.2968,0.9992) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,0.0568,0.8942) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,-2.1545,-0.4558) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2686,-3.0283,2.3985) mvmt=(-0.1814,0.0712,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6701,4.4448,-0.6060) mvmt=(-0.0056,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6701,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.170,7.250,93.192) lpos=(-10.670,4.250,-0.828) lprev=(-10.664,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8451,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6701,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6701,4.2500,-1.5775) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.170,7.250,92.442) lpos=(-10.670,4.250,-1.578) lprev=(-10.664,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8451,0.1020,0.0477) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,-0.1380,-0.0573) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1299,-0.1380,-0.0573) out=(0.1299,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6701,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.170,7.250,93.192) lpos=(-10.670,4.250,-0.828) lprev=(-10.664,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8451,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6701,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6762,4.4608,-0.6095) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,7.039,93.410) lpos=(-10.676,4.461,-0.609) lprev=(-10.670,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6762,4.4608,-0.6095) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8512,0.3127,1.0157) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,0.0727,0.9107) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,-2.1385,-0.4393) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2515,-3.0276,2.4150) mvmt=(-0.1963,0.0771,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6762,4.4608,-0.5895) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6762,4.4608,-0.6095) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,7.039,93.410) lpos=(-10.676,4.461,-0.609) lprev=(-10.670,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6762,4.4608,-0.6095) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8512,0.3127,1.0157) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,0.0727,0.9107) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,-2.1385,-0.4393) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2515,-3.0276,2.4150) mvmt=(-0.1963,0.0771,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6762,4.4608,-0.5895) mvmt=(-0.0061,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6762,4.2500,-0.8275) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,7.250,93.192) lpos=(-10.676,4.250,-0.828) lprev=(-10.670,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8512,0.1020,0.7977) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,-0.1380,0.6927) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,-2.3493,-0.6573) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6762,4.2500,-0.8075) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6762,4.2500,-1.5775) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,7.250,92.442) lpos=(-10.676,4.250,-1.578) lprev=(-10.670,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8512,0.1020,0.0477) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,-0.1380,-0.0573) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1238,-0.1380,-0.0573) out=(0.1238,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6762,4.2500,-0.8275) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,7.250,93.192) lpos=(-10.676,4.250,-0.828) lprev=(-10.670,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8512,0.1020,0.7977) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,-0.1380,0.6927) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1238,-2.3493,-0.6573) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6762,4.2500,-0.8075) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6818,4.4441,-0.6268) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.056,93.393) lpos=(-10.682,4.444,-0.627) lprev=(-10.676,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6818,4.4441,-0.6268) mvmt=(-0.0056,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=(-0.8568,0.2961,0.9984) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,0.0561,0.8934) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,-2.1552,-0.4566) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2647,-3.0394,2.3977) mvmt=(-0.1807,0.0710,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6818,4.4441,-0.6068) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6818,4.4441,-0.6268) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.056,93.393) lpos=(-10.682,4.444,-0.627) lprev=(-10.676,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6818,4.4441,-0.6268) mvmt=(-0.0056,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=(-0.8568,0.2961,0.9984) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,0.0561,0.8934) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,-2.1552,-0.4566) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2647,-3.0394,2.3977) mvmt=(-0.1807,0.0710,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6818,4.4441,-0.6068) mvmt=(-0.0056,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6818,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.250,93.192) lpos=(-10.682,4.250,-0.828) lprev=(-10.676,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8568,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6818,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6818,4.2500,-1.5775) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.250,92.442) lpos=(-10.682,4.250,-1.578) lprev=(-10.676,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8568,0.1020,0.0477) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,-0.1380,-0.0573) mvmt=(-0.0056,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1182,-0.1380,-0.0573) out=(0.1182,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6818,4.2500,-0.8275) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.250,93.192) lpos=(-10.682,4.250,-0.828) lprev=(-10.676,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8568,0.1020,0.7977) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,-0.1380,0.6927) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1182,-2.3493,-0.6573) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6818,4.2500,-0.8075) mvmt=(-0.0056,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6879,4.4594,-0.6110) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,7.041,93.409) lpos=(-10.688,4.459,-0.611) lprev=(-10.682,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6879,4.4594,-0.6110) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8629,0.3113,1.0142) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,0.0713,0.9092) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,-2.1399,-0.4408) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2482,-3.0390,2.4135) mvmt=(-0.1949,0.0765,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6879,4.4594,-0.5910) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6879,4.4594,-0.6110) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,7.041,93.409) lpos=(-10.688,4.459,-0.611) lprev=(-10.682,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6879,4.4594,-0.6110) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8629,0.3113,1.0142) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,0.0713,0.9092) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,-2.1399,-0.4408) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2482,-3.0390,2.4135) mvmt=(-0.1949,0.0765,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6879,4.4594,-0.5910) mvmt=(-0.0061,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6879,4.2500,-0.8275) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,7.250,93.192) lpos=(-10.688,4.250,-0.828) lprev=(-10.682,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8629,0.1020,0.7977) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,-0.1380,0.6927) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,-2.3493,-0.6573) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6879,4.2500,-0.8075) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6879,4.2500,-1.5775) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,7.250,92.442) lpos=(-10.688,4.250,-1.578) lprev=(-10.682,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8629,0.1020,0.0477) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,-0.1380,-0.0573) mvmt=(-0.0061,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1121,-0.1380,-0.0573) out=(0.1121,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6879,4.2500,-0.8275) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.188,7.250,93.192) lpos=(-10.688,4.250,-0.828) lprev=(-10.682,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8629,0.1020,0.7977) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,-0.1380,0.6927) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1121,-2.3493,-0.6573) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6879,4.2500,-0.8075) mvmt=(-0.0061,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6938,4.4549,-0.6156) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.045,93.404) lpos=(-10.694,4.455,-0.616) lprev=(-10.688,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6938,4.4549,-0.6156) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8689,0.3068,1.0096) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,0.0668,0.9046) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,-2.1444,-0.4454) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2500,-3.0462,2.4089) mvmt=(-0.1908,0.0749,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6938,4.4549,-0.5956) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6938,4.4549,-0.6156) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.045,93.404) lpos=(-10.694,4.455,-0.616) lprev=(-10.688,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6938,4.4549,-0.6156) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8689,0.3068,1.0096) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,0.0668,0.9046) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,-2.1444,-0.4454) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2500,-3.0462,2.4089) mvmt=(-0.1908,0.0749,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6938,4.4549,-0.5956) mvmt=(-0.0059,0.2049,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6938,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.250,93.192) lpos=(-10.694,4.250,-0.828) lprev=(-10.688,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8689,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6938,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6938,4.2500,-1.5775) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.250,92.442) lpos=(-10.694,4.250,-1.578) lprev=(-10.688,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8689,0.1020,0.0477) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,-0.1380,-0.0573) mvmt=(-0.0059,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1062,-0.1380,-0.0573) out=(0.1062,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6938,4.2500,-0.8275) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.250,93.192) lpos=(-10.694,4.250,-0.828) lprev=(-10.688,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8689,0.1020,0.7977) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,-0.1380,0.6927) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1062,-2.3493,-0.6573) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6938,4.2500,-0.8075) mvmt=(-0.0059,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7291,4.4613,-0.6090) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.039,93.411) lpos=(-10.729,4.461,-0.609) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7291,4.4613,-0.6090) mvmt=(-0.0352,0.2113,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=(-0.9041,0.3132,1.0162) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0709,0.0732,0.9112) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0709,-2.1380,-0.4388) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2303,-3.0761,2.4155) mvmt=(-0.2081,0.0505,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7291,4.4613,-0.5890) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7291,4.4613,-0.6090) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.039,93.411) lpos=(-10.729,4.461,-0.609) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7291,4.4613,-0.6090) mvmt=(-0.0352,0.2113,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=(-0.9041,0.3132,1.0162) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0709,0.0732,0.9112) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0709,-2.1380,-0.4388) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2303,-3.0761,2.4155) mvmt=(-0.2081,0.0505,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7291,4.4613,-0.5890) mvmt=(-0.0352,0.2113,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7291,4.2500,-0.8275) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.250,93.192) lpos=(-10.729,4.250,-0.828) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9041,0.1020,0.7977) 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.0709,-0.1380,0.6927) 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.0709,-2.3493,-0.6573) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7291,4.2500,-0.8075) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7291,4.2500,-1.5775) mvmt=(-0.0352,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.250,92.442) lpos=(-10.729,4.250,-1.578) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9041,0.1020,0.0477) 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.0709,-0.1380,-0.0573) 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.0709,-0.1380,-0.0573) out=(0.0709,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7291,4.2500,-0.8275) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,7.250,93.192) lpos=(-10.729,4.250,-0.828) lprev=(-10.694,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9041,0.1020,0.7977) 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.0709,-0.1380,0.6927) 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.0709,-2.3493,-0.6573) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7291,4.2500,-0.8075) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8002,4.4551,-0.6154) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.300,7.045,93.405) lpos=(-10.800,4.455,-0.615) lprev=(-10.729,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8002,4.4551,-0.6154) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9752,0.3070,1.0098) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,0.0670,0.9048) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,-2.1442,-0.4452) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8002,4.4551,-0.5954) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8002,4.4551,-0.6154) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.300,7.045,93.405) lpos=(-10.800,4.455,-0.615) lprev=(-10.729,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8002,4.4551,-0.6154) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9752,0.3070,1.0098) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,0.0670,0.9048) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,-2.1442,-0.4452) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8002,4.4551,-0.5954) mvmt=(-0.0711,0.2051,0.2121) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8002,4.2500,-0.8275) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.300,7.250,93.192) lpos=(-10.800,4.250,-0.828) lprev=(-10.729,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9752,0.1020,0.7977) mvmt=(-0.0711,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,-0.1380,0.6927) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,-2.3493,-0.6573) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8002,4.2500,-0.8075) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8002,4.2500,-1.5775) mvmt=(-0.0711,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.300,7.250,92.442) lpos=(-10.800,4.250,-1.578) lprev=(-10.729,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9752,0.1020,0.0477) mvmt=(-0.0711,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,-0.1380,-0.0573) mvmt=(-0.0711,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0002,-0.1380,-0.0573) out=(-0.0002,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8002,4.2500,-0.8275) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.300,7.250,93.192) lpos=(-10.800,4.250,-0.828) lprev=(-10.729,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9752,0.1020,0.7977) mvmt=(-0.0711,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,-0.1380,0.6927) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0002,-2.3493,-0.6573) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8002,4.2500,-0.8075) mvmt=(-0.0711,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9043,4.4472,-0.6235) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.404,7.053,93.396) lpos=(-10.904,4.447,-0.624) lprev=(-10.800,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9043,4.4472,-0.6235) mvmt=(-0.1041,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.0793,0.2992,1.0017) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,0.0592,0.8967) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,-2.1521,-0.4533) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9043,4.4472,-0.6035) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9043,4.4472,-0.6235) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.404,7.053,93.396) lpos=(-10.904,4.447,-0.624) lprev=(-10.800,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9043,4.4472,-0.6235) mvmt=(-0.1041,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.0793,0.2992,1.0017) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,0.0592,0.8967) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,-2.1521,-0.4533) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9043,4.4472,-0.6035) mvmt=(-0.1041,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9043,4.2500,-0.8275) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.404,7.250,93.192) lpos=(-10.904,4.250,-0.828) lprev=(-10.800,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0793,0.1020,0.7977) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,-0.1380,0.6927) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,-2.3493,-0.6573) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9043,4.2500,-0.8075) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9043,4.2500,-1.5775) mvmt=(-0.1041,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.404,7.250,92.442) lpos=(-10.904,4.250,-1.578) lprev=(-10.800,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0793,0.1020,0.0477) mvmt=(-0.1041,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,-0.1380,-0.0573) mvmt=(-0.1041,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1043,-0.1380,-0.0573) out=(-0.1043,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9043,4.2500,-0.8275) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.404,7.250,93.192) lpos=(-10.904,4.250,-0.828) lprev=(-10.800,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0793,0.1020,0.7977) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,-0.1380,0.6927) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1043,-2.3493,-0.6573) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9043,4.2500,-0.8075) mvmt=(-0.1041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0394,4.4546,-0.6159) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.045,93.404) lpos=(-11.039,4.455,-0.616) lprev=(-10.904,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4546,-0.6159) mvmt=(-0.1351,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=(-1.2144,0.3065,1.0093) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0665,0.9043) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1447,-0.4457) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4546,-0.5959) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4546,-0.6159) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.045,93.404) lpos=(-11.039,4.455,-0.616) lprev=(-10.904,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4546,-0.6159) mvmt=(-0.1351,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=(-1.2144,0.3065,1.0093) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0665,0.9043) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1447,-0.4457) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4546,-0.5959) mvmt=(-0.1351,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.2500,-0.8275) mvmt=(-0.1351,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.250,93.192) lpos=(-11.039,4.250,-0.828) lprev=(-10.904,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2144,0.1020,0.7977) mvmt=(-0.1351,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-0.1380,0.6927) mvmt=(-0.1351,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.3493,-0.6573) mvmt=(-0.1351,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.2500,-0.8075) mvmt=(-0.1351,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.2500,-1.5775) mvmt=(-0.1351,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.250,92.442) lpos=(-11.039,4.250,-1.578) lprev=(-10.904,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2144,0.1020,0.0477) mvmt=(-0.1351,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-0.1380,-0.0573) mvmt=(-0.1351,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2394,-0.1380,-0.0573) out=(-0.2394,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0394,4.2500,-0.8275) mvmt=(-0.1351,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.250,93.192) lpos=(-11.039,4.250,-0.828) lprev=(-10.904,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2144,0.1020,0.7977) mvmt=(-0.1351,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-0.1380,0.6927) mvmt=(-0.1351,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.3493,-0.6573) mvmt=(-0.1351,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.2500,-0.8075) mvmt=(-0.1351,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1747,4.4548,-0.6156) mvmt=(-0.1353,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1747,4.4548,-0.6156) mvmt=(-0.1353,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.045,93.404) lpos=(-11.175,4.455,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1747,4.4548,-0.6156) mvmt=(-0.1353,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.3068,1.0096) mvmt=(-0.1353,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3746,0.0668,0.9046) mvmt=(-0.1353,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3746,-2.1445,-0.4454) mvmt=(-0.1353,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1747,4.4548,-0.5956) mvmt=(-0.1353,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.045,93.404) lpos=(-11.175,4.455,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4549,-0.6156) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.045,93.404) lpos=(-11.039,4.455,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4549,-0.6156) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3068,1.0096) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0668,0.9046) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1445,-0.4454) mvmt=(-0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4549,-0.5956) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4549,-0.6156) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.045,93.404) lpos=(-11.039,4.455,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4549,-0.6156) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3068,1.0096) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0668,0.9046) mvmt=(0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1445,-0.4454) mvmt=(-0.0000,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4549,-0.5956) mvmt=(0.0000,0.2048,0.2119) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1737,4.4533,-0.6172) mvmt=(-0.1343,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1737,4.4533,-0.6172) mvmt=(-0.1343,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.047,93.403) lpos=(-11.174,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1737,4.4533,-0.6172) mvmt=(-0.1343,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.3487,0.3053,1.0080) mvmt=(-0.1343,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3737,0.0653,0.9030) mvmt=(-0.1343,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3737,-2.1460,-0.4470) mvmt=(-0.1343,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1737,4.4533,-0.5972) mvmt=(-0.1343,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.047,93.403) lpos=(-11.174,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.6172) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.047,93.403) lpos=(-11.039,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.6172) 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.2144,0.3053,1.0080) 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.2394,0.0653,0.9030) 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.2394,-2.1460,-0.4470) 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.0394,4.4533,-0.5972) 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.0394,4.4533,-0.6172) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.047,93.403) lpos=(-11.039,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.6172) 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.2144,0.3053,1.0080) 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.2394,0.0653,0.9030) 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.2394,-2.1460,-0.4470) 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.0394,4.4533,-0.5972) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1598,4.4323,-0.6390) mvmt=(-0.1204,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1598,4.4323,-0.6390) mvmt=(-0.1204,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.660,7.068,93.381) lpos=(-11.160,4.432,-0.639) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1598,4.4323,-0.6390) mvmt=(-0.1204,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3348,0.2842,0.9862) mvmt=(-0.1204,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3598,0.0442,0.8812) mvmt=(-0.1204,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3598,-2.1670,-0.4688) mvmt=(-0.1204,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1598,4.4323,-0.6190) mvmt=(-0.1204,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.660,7.068,93.381) lpos=(-11.160,4.432,-0.639) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4323,-0.6390) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.068,93.381) lpos=(-11.039,4.432,-0.639) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4323,-0.6390) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2842,0.9862) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0442,0.8812) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1670,-0.4688) mvmt=(-0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4323,-0.6190) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4323,-0.6390) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.068,93.381) lpos=(-11.039,4.432,-0.639) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4323,-0.6390) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2842,0.9862) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0442,0.8812) mvmt=(0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1670,-0.4688) mvmt=(-0.0000,0.1823,0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4323,-0.6190) mvmt=(0.0000,0.1823,0.1885) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1766,4.4578,-0.6126) mvmt=(-0.1372,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1766,4.4578,-0.6126) mvmt=(-0.1372,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.677,7.042,93.407) lpos=(-11.177,4.458,-0.613) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1766,4.4578,-0.6126) mvmt=(-0.1372,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3516,0.3097,1.0126) mvmt=(-0.1372,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3766,0.0697,0.9076) mvmt=(-0.1372,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3766,-2.1415,-0.4424) mvmt=(-0.1372,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1766,4.4578,-0.5926) mvmt=(-0.1372,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.677,7.042,93.407) lpos=(-11.177,4.458,-0.613) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4578,-0.6126) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.042,93.407) lpos=(-11.039,4.458,-0.613) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4578,-0.6126) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3097,1.0126) 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.2394,0.0697,0.9076) 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.2394,-2.1415,-0.4424) 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.0394,4.4578,-0.5926) 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.0394,4.4578,-0.6126) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.042,93.407) lpos=(-11.039,4.458,-0.613) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4578,-0.6126) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3097,1.0126) 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.2394,0.0697,0.9076) 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.2394,-2.1415,-0.4424) 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.0394,4.4578,-0.5926) mvmt=(0.0000,0.2077,0.2149) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1711,4.4494,-0.6213) mvmt=(-0.1317,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1711,4.4494,-0.6213) mvmt=(-0.1317,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.051,93.399) lpos=(-11.171,4.449,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1711,4.4494,-0.6213) mvmt=(-0.1317,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.3461,0.3014,1.0039) mvmt=(-0.1317,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3711,0.0614,0.8989) mvmt=(-0.1317,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3711,-2.1499,-0.4511) mvmt=(-0.1317,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1711,4.4494,-0.6013) mvmt=(-0.1317,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.051,93.399) lpos=(-11.171,4.449,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4494,-0.6213) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.051,93.399) lpos=(-11.039,4.449,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4494,-0.6213) 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.2144,0.3014,1.0039) 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.2394,0.0614,0.8989) 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.2394,-2.1499,-0.4511) 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.0394,4.4494,-0.6013) 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.0394,4.4494,-0.6213) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.051,93.399) lpos=(-11.039,4.449,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4494,-0.6213) 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.2144,0.3014,1.0039) 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.2394,0.0614,0.8989) 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.2394,-2.1499,-0.4511) 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.0394,4.4494,-0.6013) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1623,4.4361,-0.6351) mvmt=(-0.1229,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1623,4.4361,-0.6351) mvmt=(-0.1229,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,7.064,93.385) lpos=(-11.162,4.436,-0.635) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1623,4.4361,-0.6351) mvmt=(-0.1229,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3373,0.2880,0.9901) mvmt=(-0.1229,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3623,0.0480,0.8851) mvmt=(-0.1229,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3623,-2.1632,-0.4649) mvmt=(-0.1229,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1623,4.4361,-0.6151) mvmt=(-0.1229,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,7.064,93.385) lpos=(-11.162,4.436,-0.635) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4361,-0.6351) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.064,93.385) lpos=(-11.039,4.436,-0.635) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4361,-0.6351) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2880,0.9901) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0480,0.8851) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1632,-0.4649) mvmt=(-0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4361,-0.6151) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4361,-0.6351) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.064,93.385) lpos=(-11.039,4.436,-0.635) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4361,-0.6351) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2880,0.9901) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0480,0.8851) mvmt=(0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1632,-0.4649) mvmt=(-0.0000,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4361,-0.6151) mvmt=(0.0000,0.1861,0.1925) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1702,4.4481,-0.6226) mvmt=(-0.1308,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1702,4.4481,-0.6226) mvmt=(-0.1308,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.052,93.397) lpos=(-11.170,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1702,4.4481,-0.6226) mvmt=(-0.1308,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.3452,0.3001,1.0026) mvmt=(-0.1308,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3702,0.0601,0.8976) mvmt=(-0.1308,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3702,-2.1512,-0.4524) mvmt=(-0.1308,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1702,4.4481,-0.6026) mvmt=(-0.1308,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.052,93.397) lpos=(-11.170,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4481,-0.6226) mvmt=(0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.052,93.397) lpos=(-11.039,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4481,-0.6226) mvmt=(0.0000,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.2144,0.3001,1.0026) mvmt=(0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0601,0.8976) mvmt=(0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1512,-0.4524) mvmt=(-0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4481,-0.6026) mvmt=(0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4481,-0.6226) mvmt=(0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.052,93.397) lpos=(-11.039,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4481,-0.6226) mvmt=(0.0000,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.2144,0.3001,1.0026) mvmt=(0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0601,0.8976) mvmt=(0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1512,-0.4524) mvmt=(-0.0000,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4481,-0.6026) mvmt=(0.0000,0.1981,0.2049) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1736,4.4533,-0.6173) mvmt=(-0.1342,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1736,4.4533,-0.6173) mvmt=(-0.1342,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.047,93.403) lpos=(-11.174,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1736,4.4533,-0.6173) mvmt=(-0.1342,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3486,0.3052,1.0079) mvmt=(-0.1342,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3736,0.0652,0.9029) mvmt=(-0.1342,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3736,-2.1461,-0.4471) mvmt=(-0.1342,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1736,4.4533,-0.5973) mvmt=(-0.1342,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.047,93.403) lpos=(-11.174,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.047,93.403) lpos=(-11.039,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3052,1.0079) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0652,0.9029) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1461,-0.4471) mvmt=(-0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.5973) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.047,93.403) lpos=(-11.039,4.453,-0.617) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.6173) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3052,1.0079) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0652,0.9029) mvmt=(0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1461,-0.4471) mvmt=(-0.0000,0.2032,0.2102) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4533,-0.5973) mvmt=(0.0000,0.2032,0.2102) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1703,4.4483,-0.6224) mvmt=(-0.1310,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1703,4.4483,-0.6224) mvmt=(-0.1310,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.052,93.398) lpos=(-11.170,4.448,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1703,4.4483,-0.6224) mvmt=(-0.1310,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.3454,0.3003,1.0028) mvmt=(-0.1310,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3703,0.0603,0.8978) mvmt=(-0.1310,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3703,-2.1510,-0.4522) mvmt=(-0.1310,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1703,4.4483,-0.6024) mvmt=(-0.1310,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.052,93.398) lpos=(-11.170,4.448,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4483,-0.6224) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.052,93.398) lpos=(-11.039,4.448,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4483,-0.6224) 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.2144,0.3003,1.0028) 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.2394,0.0603,0.8978) 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.2394,-2.1510,-0.4522) 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.0394,4.4483,-0.6024) 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.0394,4.4483,-0.6224) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.052,93.398) lpos=(-11.039,4.448,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4483,-0.6224) 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.2144,0.3003,1.0028) 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.2394,0.0603,0.8978) 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.2394,-2.1510,-0.4522) 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.0394,4.4483,-0.6024) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1714,4.4499,-0.6208) mvmt=(-0.1320,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1714,4.4499,-0.6208) mvmt=(-0.1320,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.050,93.399) lpos=(-11.171,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1714,4.4499,-0.6208) mvmt=(-0.1320,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.3464,0.3018,1.0044) mvmt=(-0.1320,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3714,0.0618,0.8994) mvmt=(-0.1320,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3714,-2.1494,-0.4506) mvmt=(-0.1320,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1714,4.4499,-0.6008) mvmt=(-0.1320,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.050,93.399) lpos=(-11.171,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4499,-0.6208) mvmt=(0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.050,93.399) lpos=(-11.039,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4499,-0.6208) mvmt=(0.0000,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.2144,0.3018,1.0044) mvmt=(0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0618,0.8994) mvmt=(0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1494,-0.4506) mvmt=(-0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4499,-0.6008) mvmt=(0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4499,-0.6208) mvmt=(0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.050,93.399) lpos=(-11.039,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4499,-0.6208) mvmt=(0.0000,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.2144,0.3018,1.0044) mvmt=(0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0618,0.8994) mvmt=(0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1494,-0.4506) mvmt=(-0.0000,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4499,-0.6008) mvmt=(0.0000,0.1998,0.2067) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1712,4.4497,-0.6210) mvmt=(-0.1319,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1712,4.4497,-0.6210) mvmt=(-0.1319,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.050,93.399) lpos=(-11.171,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1712,4.4497,-0.6210) mvmt=(-0.1319,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3462,0.3016,1.0042) mvmt=(-0.1319,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3712,0.0616,0.8992) mvmt=(-0.1319,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3712,-2.1497,-0.4508) mvmt=(-0.1319,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1712,4.4497,-0.6010) mvmt=(-0.1319,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.050,93.399) lpos=(-11.171,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4497,-0.6210) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.050,93.399) lpos=(-11.039,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4497,-0.6210) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3016,1.0042) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0616,0.8992) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1497,-0.4508) mvmt=(-0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4497,-0.6010) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4497,-0.6210) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.050,93.399) lpos=(-11.039,4.450,-0.621) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4497,-0.6210) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3016,1.0042) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0616,0.8992) mvmt=(0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1497,-0.4508) mvmt=(-0.0000,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4497,-0.6010) mvmt=(0.0000,0.1996,0.2065) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1741,4.4541,-0.6164) mvmt=(-0.1348,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1741,4.4541,-0.6164) mvmt=(-0.1348,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.046,93.404) lpos=(-11.174,4.454,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1741,4.4541,-0.6164) mvmt=(-0.1348,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.3492,0.3060,1.0088) mvmt=(-0.1348,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3741,0.0660,0.9038) mvmt=(-0.1348,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3741,-2.1452,-0.4463) mvmt=(-0.1348,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1741,4.4541,-0.5965) mvmt=(-0.1348,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.046,93.404) lpos=(-11.174,4.454,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4541,-0.6164) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.046,93.404) lpos=(-11.039,4.454,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4541,-0.6164) 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.2144,0.3060,1.0088) 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.2394,0.0660,0.9038) 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.2394,-2.1452,-0.4463) 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.0394,4.4541,-0.5965) 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.0394,4.4541,-0.6164) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.046,93.404) lpos=(-11.039,4.454,-0.616) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4541,-0.6164) 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.2144,0.3060,1.0088) 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.2394,0.0660,0.9038) 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.2394,-2.1452,-0.4463) 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.0394,4.4541,-0.5965) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1686,4.4457,-0.6251) mvmt=(-0.1292,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1686,4.4457,-0.6251) mvmt=(-0.1292,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.669,7.054,93.395) lpos=(-11.169,4.446,-0.625) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1686,4.4457,-0.6251) mvmt=(-0.1292,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3436,0.2976,1.0001) mvmt=(-0.1292,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3686,0.0576,0.8951) mvmt=(-0.1292,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3686,-2.1536,-0.4549) mvmt=(-0.1292,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1686,4.4457,-0.6051) mvmt=(-0.1292,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.669,7.054,93.395) lpos=(-11.169,4.446,-0.625) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4457,-0.6251) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.054,93.395) lpos=(-11.039,4.446,-0.625) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4457,-0.6251) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2976,1.0001) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0576,0.8951) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1536,-0.4549) mvmt=(-0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4457,-0.6051) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4457,-0.6251) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.054,93.395) lpos=(-11.039,4.446,-0.625) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4457,-0.6251) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2976,1.0001) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0576,0.8951) mvmt=(0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1536,-0.4549) mvmt=(-0.0000,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4457,-0.6051) mvmt=(0.0000,0.1956,0.2024) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1703,4.4482,-0.6225) mvmt=(-0.1309,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1703,4.4482,-0.6225) mvmt=(-0.1309,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.052,93.397) lpos=(-11.170,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1703,4.4482,-0.6225) mvmt=(-0.1309,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=(-1.3453,0.3001,1.0027) mvmt=(-0.1309,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3703,0.0601,0.8977) mvmt=(-0.1309,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3703,-2.1511,-0.4523) mvmt=(-0.1309,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1703,4.4482,-0.6025) mvmt=(-0.1309,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.670,7.052,93.397) lpos=(-11.170,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4482,-0.6225) mvmt=(0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.052,93.397) lpos=(-11.039,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4482,-0.6225) mvmt=(0.0000,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=(-1.2144,0.3001,1.0027) mvmt=(0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0601,0.8977) mvmt=(0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1511,-0.4523) mvmt=(-0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4482,-0.6025) mvmt=(0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4482,-0.6225) mvmt=(0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.052,93.397) lpos=(-11.039,4.448,-0.623) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4482,-0.6225) mvmt=(0.0000,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=(-1.2144,0.3001,1.0027) mvmt=(0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0601,0.8977) mvmt=(0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1511,-0.4523) mvmt=(-0.0000,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4482,-0.6025) mvmt=(0.0000,0.1982,0.2050) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1726,4.4517,-0.6189) mvmt=(-0.1332,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1726,4.4517,-0.6189) mvmt=(-0.1332,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,7.048,93.401) lpos=(-11.173,4.452,-0.619) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1726,4.4517,-0.6189) mvmt=(-0.1332,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.3476,0.3037,1.0063) mvmt=(-0.1332,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3726,0.0637,0.9013) mvmt=(-0.1332,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3726,-2.1476,-0.4487) mvmt=(-0.1332,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1726,4.4517,-0.5989) mvmt=(-0.1332,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,7.048,93.401) lpos=(-11.173,4.452,-0.619) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4517,-0.6189) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.048,93.401) lpos=(-11.039,4.452,-0.619) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4517,-0.6189) 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.2144,0.3037,1.0063) 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.2394,0.0637,0.9013) 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.2394,-2.1476,-0.4487) 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.0394,4.4517,-0.5989) 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.0394,4.4517,-0.6189) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.048,93.401) lpos=(-11.039,4.452,-0.619) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4517,-0.6189) 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.2144,0.3037,1.0063) 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.2394,0.0637,0.9013) 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.2394,-2.1476,-0.4487) 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.0394,4.4517,-0.5989) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1718,4.4505,-0.6201) mvmt=(-0.1324,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1718,4.4505,-0.6201) mvmt=(-0.1324,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,7.049,93.400) lpos=(-11.172,4.451,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1718,4.4505,-0.6201) mvmt=(-0.1324,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.3468,0.3025,1.0051) mvmt=(-0.1324,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3718,0.0625,0.9001) mvmt=(-0.1324,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3718,-2.1488,-0.4499) mvmt=(-0.1324,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1718,4.4505,-0.6001) mvmt=(-0.1324,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,7.049,93.400) lpos=(-11.172,4.451,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4505,-0.6201) mvmt=(0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.049,93.400) lpos=(-11.039,4.451,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4505,-0.6201) mvmt=(0.0000,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.2144,0.3025,1.0051) mvmt=(0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0625,0.9001) mvmt=(0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1488,-0.4499) mvmt=(-0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4505,-0.6001) mvmt=(0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4505,-0.6201) mvmt=(0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.049,93.400) lpos=(-11.039,4.451,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4505,-0.6201) mvmt=(0.0000,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.2144,0.3025,1.0051) mvmt=(0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0625,0.9001) mvmt=(0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1488,-0.4499) mvmt=(-0.0000,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4505,-0.6001) mvmt=(0.0000,0.2005,0.2074) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1706,4.4487,-0.6220) mvmt=(-0.1312,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1706,4.4487,-0.6220) mvmt=(-0.1312,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.051,93.398) lpos=(-11.171,4.449,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1706,4.4487,-0.6220) mvmt=(-0.1312,0.1987,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=(-1.3456,0.3007,1.0032) mvmt=(-0.1312,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3706,0.0607,0.8982) mvmt=(-0.1312,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3706,-2.1506,-0.4518) mvmt=(-0.1312,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1706,4.4487,-0.6020) mvmt=(-0.1312,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.051,93.398) lpos=(-11.171,4.449,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4487,-0.6220) mvmt=(0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.051,93.398) lpos=(-11.039,4.449,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4487,-0.6220) mvmt=(0.0000,0.1987,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=(-1.2144,0.3007,1.0032) mvmt=(0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0607,0.8982) mvmt=(0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1506,-0.4518) mvmt=(-0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4487,-0.6020) mvmt=(0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4487,-0.6220) mvmt=(0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.051,93.398) lpos=(-11.039,4.449,-0.622) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4487,-0.6220) mvmt=(0.0000,0.1987,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=(-1.2144,0.3007,1.0032) mvmt=(0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0607,0.8982) mvmt=(0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1506,-0.4518) mvmt=(-0.0000,0.1987,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4487,-0.6020) mvmt=(0.0000,0.1987,0.2056) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1717,4.4504,-0.6203) mvmt=(-0.1323,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1717,4.4504,-0.6203) mvmt=(-0.1323,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,7.050,93.400) lpos=(-11.172,4.450,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1717,4.4504,-0.6203) mvmt=(-0.1323,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3467,0.3023,1.0049) mvmt=(-0.1323,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3717,0.0623,0.8999) mvmt=(-0.1323,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3717,-2.1489,-0.4501) mvmt=(-0.1323,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1717,4.4504,-0.6003) mvmt=(-0.1323,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,7.050,93.400) lpos=(-11.172,4.450,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4504,-0.6203) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.050,93.400) lpos=(-11.039,4.450,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4504,-0.6203) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3023,1.0049) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0623,0.8999) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1489,-0.4501) mvmt=(-0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4504,-0.6003) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4504,-0.6203) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.050,93.400) lpos=(-11.039,4.450,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4504,-0.6203) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.3023,1.0049) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0623,0.8999) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1489,-0.4501) mvmt=(-0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4504,-0.6003) mvmt=(0.0000,0.2003,0.2072) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1675,4.4441,-0.6268) mvmt=(-0.1282,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1675,4.4441,-0.6268) mvmt=(-0.1282,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.668,7.056,93.393) lpos=(-11.168,4.444,-0.627) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1675,4.4441,-0.6268) mvmt=(-0.1282,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.3425,0.2960,0.9984) mvmt=(-0.1282,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3675,0.0560,0.8934) mvmt=(-0.1282,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3675,-2.1552,-0.4566) mvmt=(-0.1282,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1675,4.4441,-0.6068) mvmt=(-0.1282,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.668,7.056,93.393) lpos=(-11.168,4.444,-0.627) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4441,-0.6268) mvmt=(0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.056,93.393) lpos=(-11.039,4.444,-0.627) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4441,-0.6268) mvmt=(0.0000,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.2144,0.2960,0.9984) mvmt=(0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0560,0.8934) mvmt=(0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1552,-0.4566) mvmt=(-0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4441,-0.6068) mvmt=(0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4441,-0.6268) mvmt=(0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.056,93.393) lpos=(-11.039,4.444,-0.627) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4441,-0.6268) mvmt=(0.0000,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.2144,0.2960,0.9984) mvmt=(0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0560,0.8934) mvmt=(0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1552,-0.4566) mvmt=(-0.0000,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4441,-0.6068) mvmt=(0.0000,0.1940,0.2007) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1750,4.4553,-0.6152) mvmt=(-0.1356,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1750,4.4553,-0.6152) mvmt=(-0.1356,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.045,93.405) lpos=(-11.175,4.455,-0.615) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1750,4.4553,-0.6152) mvmt=(-0.1356,0.2053,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.3500,0.3073,1.0100) mvmt=(-0.1356,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3750,0.0673,0.9050) mvmt=(-0.1356,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3750,-2.1440,-0.4450) mvmt=(-0.1356,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1750,4.4553,-0.5952) mvmt=(-0.1356,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.045,93.405) lpos=(-11.175,4.455,-0.615) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4553,-0.6152) mvmt=(0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.045,93.405) lpos=(-11.039,4.455,-0.615) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4553,-0.6152) mvmt=(0.0000,0.2053,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.2144,0.3073,1.0100) mvmt=(0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0673,0.9050) mvmt=(0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1440,-0.4450) mvmt=(-0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4553,-0.5952) mvmt=(0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4553,-0.6152) mvmt=(0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.045,93.405) lpos=(-11.039,4.455,-0.615) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4553,-0.6152) mvmt=(0.0000,0.2053,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.2144,0.3073,1.0100) mvmt=(0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0673,0.9050) mvmt=(0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1440,-0.4450) mvmt=(-0.0000,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4553,-0.5952) mvmt=(0.0000,0.2053,0.2123) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1679,4.4446,-0.6262) mvmt=(-0.1285,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1679,4.4446,-0.6262) mvmt=(-0.1285,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.668,7.055,93.394) lpos=(-11.168,4.445,-0.626) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1679,4.4446,-0.6262) mvmt=(-0.1285,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3429,0.2966,0.9990) mvmt=(-0.1285,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3679,0.0566,0.8940) mvmt=(-0.1285,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3679,-2.1547,-0.4560) mvmt=(-0.1285,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1679,4.4446,-0.6062) mvmt=(-0.1285,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.668,7.055,93.394) lpos=(-11.168,4.445,-0.626) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4446,-0.6262) mvmt=(0.0000,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.055,93.394) lpos=(-11.039,4.445,-0.626) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4446,-0.6262) mvmt=(0.0000,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2966,0.9990) 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.2394,0.0566,0.8940) 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.2394,-2.1547,-0.4560) mvmt=(-0.0000,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4446,-0.6062) mvmt=(0.0000,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4446,-0.6262) mvmt=(0.0000,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.055,93.394) lpos=(-11.039,4.445,-0.626) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4446,-0.6262) mvmt=(0.0000,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2144,0.2966,0.9990) 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.2394,0.0566,0.8940) 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.2394,-2.1547,-0.4560) mvmt=(-0.0000,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4446,-0.6062) mvmt=(0.0000,0.1946,0.2013) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1671,4.4433,-0.6276) mvmt=(-0.1277,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1671,4.4433,-0.6276) mvmt=(-0.1277,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.667,7.057,93.392) lpos=(-11.167,4.443,-0.628) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1671,4.4433,-0.6276) mvmt=(-0.1277,0.1933,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=(-1.3421,0.2953,0.9976) mvmt=(-0.1277,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3671,0.0553,0.8926) mvmt=(-0.1277,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3670,-2.1560,-0.4574) mvmt=(-0.1277,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1671,4.4433,-0.6076) mvmt=(-0.1277,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.667,7.057,93.392) lpos=(-11.167,4.443,-0.628) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4433,-0.6276) mvmt=(0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.057,93.392) lpos=(-11.039,4.443,-0.628) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4433,-0.6276) mvmt=(0.0000,0.1933,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=(-1.2144,0.2953,0.9976) mvmt=(0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0553,0.8926) mvmt=(0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1560,-0.4574) mvmt=(-0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4433,-0.6076) mvmt=(0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4433,-0.6276) mvmt=(0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.057,93.392) lpos=(-11.039,4.443,-0.628) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4433,-0.6276) mvmt=(0.0000,0.1933,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=(-1.2144,0.2953,0.9976) mvmt=(0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0553,0.8926) mvmt=(0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1560,-0.4574) mvmt=(-0.0000,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4433,-0.6076) mvmt=(0.0000,0.1933,0.2000) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1513,4.4590,-0.6113) mvmt=(-0.1120,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1513,4.4590,-0.6113) mvmt=(-0.1120,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.041,93.409) lpos=(-11.151,4.459,-0.611) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1513,4.4590,-0.6113) mvmt=(-0.1120,0.2090,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.3263,0.3110,1.0139) mvmt=(-0.1120,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3513,0.0710,0.9089) mvmt=(-0.1120,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3513,-2.1403,-0.4411) mvmt=(-0.1120,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1513,4.4590,-0.5913) mvmt=(-0.1120,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.041,93.409) lpos=(-11.151,4.459,-0.611) lprev=(-11.039,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4590,-0.6113) mvmt=(0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.041,93.409) lpos=(-11.039,4.459,-0.611) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4590,-0.6113) mvmt=(0.0000,0.2090,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.2144,0.3110,1.0139) mvmt=(0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0710,0.9089) mvmt=(0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1403,-0.4411) mvmt=(-0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4590,-0.5913) mvmt=(0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4590,-0.6113) mvmt=(0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.041,93.409) lpos=(-11.039,4.459,-0.611) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0394,4.4590,-0.6113) mvmt=(0.0000,0.2090,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.2144,0.3110,1.0139) mvmt=(0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,0.0710,0.9089) mvmt=(0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2394,-2.1403,-0.4411) mvmt=(-0.0000,0.2090,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0394,4.4590,-0.5913) mvmt=(0.0000,0.2090,0.2162) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1104,4.4503,-0.6203) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.610,7.050,93.400) lpos=(-11.110,4.450,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1104,4.4503,-0.6203) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2854,0.3023,1.0049) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,0.0623,0.8999) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,-2.1490,-0.4501) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1104,4.4503,-0.6003) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1104,4.4503,-0.6203) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.610,7.050,93.400) lpos=(-11.110,4.450,-0.620) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1104,4.4503,-0.6203) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2854,0.3023,1.0049) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,0.0623,0.8999) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,-2.1490,-0.4501) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1104,4.4503,-0.6003) mvmt=(-0.0710,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1104,4.2500,-0.8275) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.610,7.250,93.192) lpos=(-11.110,4.250,-0.828) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2854,0.1020,0.7977) mvmt=(-0.0710,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,-0.1380,0.6927) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,-2.3493,-0.6573) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1104,4.2500,-0.8075) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1104,4.2500,-1.5775) mvmt=(-0.0710,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.610,7.250,92.442) lpos=(-11.110,4.250,-1.578) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2854,0.1020,0.0477) mvmt=(-0.0710,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,-0.1380,-0.0573) mvmt=(-0.0710,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3103,-0.1380,-0.0573) out=(-0.3103,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.1104,4.2500,-0.8275) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.610,7.250,93.192) lpos=(-11.110,4.250,-0.828) lprev=(-11.039,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2854,0.1020,0.7977) mvmt=(-0.0710,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,-0.1380,0.6927) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3103,-2.3493,-0.6573) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1104,4.2500,-0.8075) mvmt=(-0.0710,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1464,4.4570,-0.6134) mvmt=(-0.0361,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1464,4.4570,-0.6134) mvmt=(-0.0361,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.043,93.407) lpos=(-11.146,4.457,-0.613) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1464,4.4570,-0.6134) mvmt=(-0.0361,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.3214,0.3090,1.0118) mvmt=(-0.0361,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3464,0.0690,0.9068) mvmt=(-0.0361,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3464,-2.1423,-0.4432) mvmt=(-0.0361,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1464,4.4570,-0.5934) mvmt=(-0.0361,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.646,7.043,93.407) lpos=(-11.146,4.457,-0.613) lprev=(-11.110,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1104,4.4570,-0.6134) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.610,7.043,93.407) lpos=(-11.110,4.457,-0.613) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1104,4.4570,-0.6134) 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.2854,0.3090,1.0118) 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.3103,0.0690,0.9068) 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.3103,-2.1423,-0.4432) 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.1104,4.4570,-0.5934) 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.1104,4.4570,-0.6134) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.610,7.043,93.407) lpos=(-11.110,4.457,-0.613) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1104,4.4570,-0.6134) 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.2854,0.3090,1.0118) 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.3103,0.0690,0.9068) 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.3103,-2.1423,-0.4432) 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.1104,4.4570,-0.5934) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1109,4.4510,-0.6196) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.049,93.400) lpos=(-11.111,4.451,-0.620) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1109,4.4510,-0.6196) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2859,0.3030,1.0056) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,0.0630,0.9006) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,-2.1483,-0.4494) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1109,4.4510,-0.5996) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1109,4.4510,-0.6196) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.049,93.400) lpos=(-11.111,4.451,-0.620) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1109,4.4510,-0.6196) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2859,0.3030,1.0056) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,0.0630,0.9006) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,-2.1483,-0.4494) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1109,4.4510,-0.5996) mvmt=(-0.0005,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1109,4.2500,-0.8275) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.250,93.192) lpos=(-11.111,4.250,-0.828) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2859,0.1020,0.7977) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,-0.1380,0.6927) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,-2.3493,-0.6573) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1109,4.2500,-0.8075) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1109,4.2500,-1.5775) mvmt=(-0.0005,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.250,92.442) lpos=(-11.111,4.250,-1.578) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2859,0.1020,0.0477) mvmt=(-0.0005,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,-0.1380,-0.0573) mvmt=(-0.0005,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3109,-0.1380,-0.0573) out=(-0.3109,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.1109,4.2500,-0.8275) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.250,93.192) lpos=(-11.111,4.250,-0.828) lprev=(-11.110,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2859,0.1020,0.7977) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,-0.1380,0.6927) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3109,-2.3493,-0.6573) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1109,4.2500,-0.8075) mvmt=(-0.0005,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0786,4.4457,-0.6251) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.579,7.054,93.395) lpos=(-11.079,4.446,-0.625) lprev=(-11.111,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0786,4.4457,-0.6251) mvmt=(0.0323,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=(-1.2536,0.2977,1.0001) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,0.0577,0.8951) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,-2.1536,-0.4549) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0786,4.4457,-0.6051) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0786,4.4457,-0.6251) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.579,7.054,93.395) lpos=(-11.079,4.446,-0.625) lprev=(-11.111,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0786,4.4457,-0.6251) mvmt=(0.0323,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=(-1.2536,0.2977,1.0001) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,0.0577,0.8951) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,-2.1536,-0.4549) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0786,4.4457,-0.6051) mvmt=(0.0323,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0786,4.2500,-0.8275) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.579,7.250,93.192) lpos=(-11.079,4.250,-0.828) lprev=(-11.111,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2536,0.1020,0.7977) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,-0.1380,0.6927) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,-2.3493,-0.6573) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0786,4.2500,-0.8075) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0786,4.2500,-1.5775) mvmt=(0.0323,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.579,7.250,92.442) lpos=(-11.079,4.250,-1.578) lprev=(-11.111,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2536,0.1020,0.0477) mvmt=(0.0323,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,-0.1380,-0.0573) mvmt=(0.0323,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2786,-0.1380,-0.0573) out=(-0.2786,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0786,4.2500,-0.8275) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.579,7.250,93.192) lpos=(-11.079,4.250,-0.828) lprev=(-11.111,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2536,0.1020,0.7977) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,-0.1380,0.6927) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2786,-2.3493,-0.6573) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0786,4.2500,-0.8075) mvmt=(0.0323,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0155,4.4403,-0.6307) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.060,93.389) lpos=(-11.015,4.440,-0.631) lprev=(-11.079,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0155,4.4403,-0.6307) mvmt=(0.0631,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.1905,0.2923,0.9945) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,0.0523,0.8895) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,-2.1590,-0.4605) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0155,4.4403,-0.6107) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0155,4.4403,-0.6307) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.060,93.389) lpos=(-11.015,4.440,-0.631) lprev=(-11.079,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0155,4.4403,-0.6307) mvmt=(0.0631,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.1905,0.2923,0.9945) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,0.0523,0.8895) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,-2.1590,-0.4605) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0155,4.4403,-0.6107) mvmt=(0.0631,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0155,4.2500,-0.8275) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.250,93.192) lpos=(-11.015,4.250,-0.828) lprev=(-11.079,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1905,0.1020,0.7977) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,-0.1380,0.6927) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,-2.3493,-0.6573) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0155,4.2500,-0.8075) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0155,4.2500,-1.5775) mvmt=(0.0631,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.250,92.442) lpos=(-11.015,4.250,-1.578) lprev=(-11.079,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1905,0.1020,0.0477) mvmt=(0.0631,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,-0.1380,-0.0573) mvmt=(0.0631,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2155,-0.1380,-0.0573) out=(-0.2155,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0155,4.2500,-0.8275) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.515,7.250,93.192) lpos=(-11.015,4.250,-0.828) lprev=(-11.079,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1905,0.1020,0.7977) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,-0.1380,0.6927) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2155,-2.3493,-0.6573) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0155,4.2500,-0.8075) mvmt=(0.0631,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9219,4.4364,-0.6347) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.064,93.385) lpos=(-10.922,4.436,-0.635) lprev=(-11.015,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9219,4.4364,-0.6347) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0969,0.2884,0.9905) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,0.0484,0.8855) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,-2.1629,-0.4645) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9219,4.4364,-0.6147) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9219,4.4364,-0.6347) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.064,93.385) lpos=(-10.922,4.436,-0.635) lprev=(-11.015,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9219,4.4364,-0.6347) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0969,0.2884,0.9905) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,0.0484,0.8855) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,-2.1629,-0.4645) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9219,4.4364,-0.6147) mvmt=(0.0936,0.1864,0.1928) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9219,4.2500,-0.8275) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.250,93.192) lpos=(-10.922,4.250,-0.828) lprev=(-11.015,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0969,0.1020,0.7977) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,-0.1380,0.6927) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,-2.3493,-0.6573) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9219,4.2500,-0.8075) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9219,4.2500,-1.5775) mvmt=(0.0936,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.250,92.442) lpos=(-10.922,4.250,-1.578) lprev=(-11.015,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0969,0.1020,0.0477) mvmt=(0.0936,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,-0.1380,-0.0573) mvmt=(0.0936,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1219,-0.1380,-0.0573) out=(-0.1219,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9219,4.2500,-0.8275) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.250,93.192) lpos=(-10.922,4.250,-0.828) lprev=(-11.015,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0969,0.1020,0.7977) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,-0.1380,0.6927) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1219,-2.3493,-0.6573) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9219,4.2500,-0.8075) mvmt=(0.0936,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7980,4.4481,-0.6226) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.298,7.052,93.397) lpos=(-10.798,4.448,-0.623) lprev=(-10.922,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7980,4.4481,-0.6226) mvmt=(0.1239,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=(-0.9730,0.3001,1.0026) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,0.0601,0.8976) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,-2.1512,-0.4524) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7980,4.4481,-0.6026) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7980,4.4481,-0.6226) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.298,7.052,93.397) lpos=(-10.798,4.448,-0.623) lprev=(-10.922,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7980,4.4481,-0.6226) mvmt=(0.1239,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=(-0.9730,0.3001,1.0026) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,0.0601,0.8976) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,-2.1512,-0.4524) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7980,4.4481,-0.6026) mvmt=(0.1239,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7980,4.2500,-0.8275) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.298,7.250,93.192) lpos=(-10.798,4.250,-0.828) lprev=(-10.922,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9730,0.1020,0.7977) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,-0.1380,0.6927) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,-2.3493,-0.6573) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7980,4.2500,-0.8075) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7980,4.2500,-1.5775) mvmt=(0.1239,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.298,7.250,92.442) lpos=(-10.798,4.250,-1.578) lprev=(-10.922,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9730,0.1020,0.0477) mvmt=(0.1239,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,-0.1380,-0.0573) mvmt=(0.1239,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0020,-0.1380,-0.0573) out=(0.0020,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7980,4.2500,-0.8275) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.298,7.250,93.192) lpos=(-10.798,4.250,-0.828) lprev=(-10.922,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9730,0.1020,0.7977) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,-0.1380,0.6927) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0020,-2.3493,-0.6573) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7980,4.2500,-0.8075) mvmt=(0.1239,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6794,4.4396,-0.6315) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,7.060,93.389) lpos=(-10.679,4.440,-0.631) lprev=(-10.798,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6794,4.4396,-0.6315) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8544,0.2915,0.9937) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,0.0515,0.8887) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,-2.1598,-0.4613) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6794,4.4396,-0.6115) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6794,4.4396,-0.6315) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,7.060,93.389) lpos=(-10.679,4.440,-0.631) lprev=(-10.798,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6794,4.4396,-0.6315) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8544,0.2915,0.9937) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,0.0515,0.8887) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,-2.1598,-0.4613) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6794,4.4396,-0.6115) mvmt=(0.1186,0.1895,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6794,4.2500,-0.8275) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,7.250,93.192) lpos=(-10.679,4.250,-0.828) lprev=(-10.798,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8544,0.1020,0.7977) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,-0.1380,0.6927) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,-2.3493,-0.6573) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6794,4.2500,-0.8075) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6794,4.2500,-1.5775) mvmt=(0.1186,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,7.250,92.442) lpos=(-10.679,4.250,-1.578) lprev=(-10.798,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8544,0.1020,0.0477) mvmt=(0.1186,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,-0.1380,-0.0573) mvmt=(0.1186,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1206,-0.1380,-0.0573) out=(0.1206,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6794,4.2500,-0.8275) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,7.250,93.192) lpos=(-10.679,4.250,-0.828) lprev=(-10.798,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8544,0.1020,0.7977) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,-0.1380,0.6927) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1206,-2.3493,-0.6573) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6794,4.2500,-0.8075) mvmt=(0.1186,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5622,4.4372,-0.6339) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.063,93.386) lpos=(-10.562,4.437,-0.634) lprev=(-10.679,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5622,4.4372,-0.6339) mvmt=(0.1171,0.1872,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.7372,0.2892,0.9913) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,0.0492,0.8864) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,-2.1621,-0.4637) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3179,-2.9320,2.3906) mvmt=(-0.1262,0.1812,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5622,4.4372,-0.6139) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5622,4.4372,-0.6339) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.063,93.386) lpos=(-10.562,4.437,-0.634) lprev=(-10.679,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5622,4.4372,-0.6339) mvmt=(0.1171,0.1872,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.7372,0.2892,0.9913) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,0.0492,0.8864) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,-2.1621,-0.4637) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3179,-2.9320,2.3906) mvmt=(-0.1262,0.1812,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5622,4.4372,-0.6139) mvmt=(0.1171,0.1872,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5622,4.2500,-0.8275) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.250,93.192) lpos=(-10.562,4.250,-0.828) lprev=(-10.679,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7372,0.1020,0.7977) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,-0.1380,0.6927) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,-2.3493,-0.6573) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5622,4.2500,-0.8075) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5622,4.2500,-1.5775) mvmt=(0.1171,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.250,92.442) lpos=(-10.562,4.250,-1.578) lprev=(-10.679,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7372,0.1020,0.0477) mvmt=(0.1171,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,-0.1380,-0.0573) mvmt=(0.1171,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2378,-0.1380,-0.0573) out=(0.2378,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5622,4.2500,-0.8275) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.250,93.192) lpos=(-10.562,4.250,-0.828) lprev=(-10.679,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7372,0.1020,0.7977) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,-0.1380,0.6927) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2378,-2.3493,-0.6573) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5622,4.2500,-0.8075) mvmt=(0.1171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4423,4.4417,-0.6292) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.058,93.391) lpos=(-10.442,4.442,-0.629) lprev=(-10.562,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4423,4.4417,-0.6292) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6173,0.2937,0.9960) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,0.0537,0.8910) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.1576,-0.4590) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3608,-2.8199,2.3953) mvmt=(-0.1293,0.1856,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4417,-0.6092) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4417,-0.6292) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.058,93.391) lpos=(-10.442,4.442,-0.629) lprev=(-10.562,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4423,4.4417,-0.6292) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6173,0.2937,0.9960) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,0.0537,0.8910) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.1576,-0.4590) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3608,-2.8199,2.3953) mvmt=(-0.1293,0.1856,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4417,-0.6092) mvmt=(0.1200,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.2500,-0.8275) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.250,93.192) lpos=(-10.442,4.250,-0.828) lprev=(-10.562,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6173,0.1020,0.7977) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-0.1380,0.6927) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.3493,-0.6573) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.2500,-0.8075) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.2500,-1.5775) mvmt=(0.1200,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.250,92.442) lpos=(-10.442,4.250,-1.578) lprev=(-10.562,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6173,0.1020,0.0477) mvmt=(0.1200,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-0.1380,-0.0573) mvmt=(0.1200,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3577,-0.1380,-0.0573) out=(0.3577,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4423,4.2500,-0.8275) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.250,93.192) lpos=(-10.442,4.250,-0.828) lprev=(-10.562,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6173,0.1020,0.7977) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-0.1380,0.6927) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.3493,-0.6573) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.2500,-0.8075) mvmt=(0.1200,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3258,4.4361,-0.6350) mvmt=(0.1165,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3258,4.4361,-0.6350) mvmt=(0.1165,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.064,93.385) lpos=(-10.326,4.436,-0.635) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3258,4.4361,-0.6350) mvmt=(0.1165,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5008,0.2881,0.9902) mvmt=(0.1165,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5008,0.2881,0.9902) out=(-0.5008,0.2881,1.3169) delta=(0.0000,0.0000,0.3267) deltaMag=0.3267 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4555 dpPos=0.2490 dpMove=-0.4243 iDist=0.5445 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.3258,4.4361,-0.3083) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.064,93.712) lpos=(-10.326,4.436,-0.308) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3258,4.4361,-0.3083) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[push-back] site=adjust_sphere in=(-10.3258,4.4361,-0.3083) out=(-10.3258,4.4361,-0.3083) 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.4555->0.4555 dpPos=-0.3083 dpMove=-0.2733 iDist=2.8845 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.3258,4.4361,-0.3083) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5008,0.2881,1.3169) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[push-back-disp] site=dispatch center=(0.4742,0.0481,1.2119) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[push-back-disp] site=dispatch center=(0.4742,-2.1632,-0.1381) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[push-back-disp] site=dispatch center=(0.4117,-2.7150,2.7162) mvmt=(-0.1255,0.1801,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[push-back-disp] site=dispatch center=(-10.3258,4.4361,-0.2883) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[push-back-disp] site=dispatch center=(-10.3258,4.4361,-0.3083) mvmt=(0.1165,0.1861,0.5192) collide=False insertType=1 objState=0x303 winterp=0.4555 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.064,93.712) lpos=(-10.326,4.436,-0.308) lprev=(-10.442,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.064,93.385) lpos=(-10.326,4.436,-0.635) lprev=(-10.442,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3258,4.2500,-0.8275) mvmt=(0.1165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.250,93.192) lpos=(-10.326,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5008,0.1020,0.7977) mvmt=(0.1165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4555 return=-1 +[push-back-disp] site=dispatch center=(-10.3258,4.2500,-0.8275) mvmt=(0.1165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.250,93.192) lpos=(-10.326,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5008,0.1020,0.7977) mvmt=(0.1165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5008,0.1020,0.7977) out=(-0.5008,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3258,4.2500,-0.4944) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.250,93.526) lpos=(-10.326,4.250,-0.494) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3258,4.2500,-0.4944) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.3258,4.2500,-0.4944) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5008,0.1020,1.1308) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4742,-0.1380,1.0258) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4742,-2.3493,-0.3242) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5829,-2.7880,2.5301) mvmt=(0.0457,0.1071,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3258,4.2500,-0.4744) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3258,4.2500,-0.4944) mvmt=(0.1165,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.826,7.250,93.526) lpos=(-10.326,4.250,-0.494) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4423,4.4453,-0.4979) mvmt=(0.0000,0.1953,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4453,-0.4979) mvmt=(0.0000,0.1953,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.055,93.522) lpos=(-10.442,4.445,-0.498) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4423,4.4453,-0.4979) mvmt=(0.0000,0.1953,0.3296) 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.4423,4.4453,-0.4979) mvmt=(0.0000,0.1953,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6173,0.2973,1.1273) mvmt=(0.0000,0.1953,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,0.0573,1.0223) mvmt=(0.0000,0.1953,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.1540,-0.3277) mvmt=(0.0000,0.1953,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3575,-2.8185,2.5266) mvmt=(-0.1796,0.0766,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4453,-0.4779) mvmt=(0.0000,0.1953,0.3296) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.055,93.522) lpos=(-10.442,4.445,-0.498) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3226,4.4480,-0.4953) mvmt=(0.1197,0.1979,0.3323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3226,4.4480,-0.4953) mvmt=(0.1197,0.1979,0.3323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.052,93.525) lpos=(-10.323,4.448,-0.495) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3226,4.4480,-0.4953) mvmt=(0.1197,0.1979,0.3323) 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.3226,4.4480,-0.4953) mvmt=(0.1197,0.1979,0.3323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4976,0.2999,1.1299) mvmt=(0.1197,0.1979,0.3323) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4976,0.2999,1.1299) out=(-0.4976,0.2999,1.3287) 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.3226,4.4480,-0.2965) mvmt=(0.1197,0.1979,0.5311) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.052,93.724) lpos=(-10.323,4.448,-0.296) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3226,4.4480,-0.2965) mvmt=(0.1197,0.1979,0.5311) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.3226,4.4480,-0.2965) out=(-10.3226,4.4480,-0.2965) 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.2965 dpMove=-0.4012 iDist=1.9354 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.3226,4.4480,-0.2965) mvmt=(0.1197,0.1979,0.5311) 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.4976,0.2999,1.3287) mvmt=(0.1197,0.1979,0.5311) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4774,0.0599,1.2237) mvmt=(0.1197,0.1979,0.5311) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4774,-2.1513,-0.1263) mvmt=(0.1197,0.1979,0.5311) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4020,-2.7074,2.7280) mvmt=(-0.1351,0.1877,0.5311) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3226,4.4480,-0.2765) mvmt=(0.1197,0.1979,0.5311) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3226,4.4480,-0.2965) mvmt=(0.1197,0.1979,0.5311) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.052,93.724) lpos=(-10.323,4.448,-0.296) lprev=(-10.442,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.052,93.525) lpos=(-10.323,4.448,-0.495) lprev=(-10.442,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3226,4.2500,-0.8275) mvmt=(0.1197,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.250,93.192) lpos=(-10.323,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4976,0.1020,0.7977) mvmt=(0.1197,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3226,4.2500,-0.8275) mvmt=(0.1197,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.250,93.192) lpos=(-10.323,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4976,0.1020,0.7977) mvmt=(0.1197,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4976,0.1020,0.7977) out=(-0.4976,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3226,4.2500,-0.4944) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.250,93.526) lpos=(-10.323,4.250,-0.494) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3226,4.2500,-0.4944) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.3226,4.2500,-0.4944) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4976,0.1020,1.1308) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4774,-0.1380,1.0258) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4774,-2.3493,-0.3242) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5841,-2.7851,2.5301) mvmt=(0.0469,0.1101,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3226,4.2500,-0.4744) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3226,4.2500,-0.4944) mvmt=(0.1197,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.823,7.250,93.526) lpos=(-10.323,4.250,-0.494) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4423,4.4536,-0.4897) mvmt=(0.0000,0.2035,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4536,-0.4897) mvmt=(0.0000,0.2035,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.046,93.530) lpos=(-10.442,4.454,-0.490) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4423,4.4536,-0.4897) mvmt=(0.0000,0.2035,0.3378) 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.4423,4.4536,-0.4897) mvmt=(0.0000,0.2035,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6173,0.3055,1.1355) mvmt=(0.0000,0.2035,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,0.0655,1.0305) mvmt=(0.0000,0.2035,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.1458,-0.3195) mvmt=(0.0000,0.2035,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3500,-2.8153,2.5348) mvmt=(-0.1872,0.0798,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4536,-0.4697) mvmt=(0.0000,0.2035,0.3378) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.046,93.530) lpos=(-10.442,4.454,-0.490) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3210,4.4506,-0.4927) mvmt=(0.1212,0.2006,0.3349) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3210,4.4506,-0.4927) mvmt=(0.1212,0.2006,0.3349) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.049,93.527) lpos=(-10.321,4.451,-0.493) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3210,4.4506,-0.4927) mvmt=(0.1212,0.2006,0.3349) 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.3210,4.4506,-0.4927) mvmt=(0.1212,0.2006,0.3349) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4960,0.3025,1.1325) mvmt=(0.1212,0.2006,0.3349) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4960,0.3025,1.1325) out=(-0.4960,0.3025,1.3314) 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.3210,4.4506,-0.2938) mvmt=(0.1212,0.2006,0.5337) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.049,93.726) lpos=(-10.321,4.451,-0.294) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3210,4.4506,-0.2938) mvmt=(0.1212,0.2006,0.5337) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.3210,4.4506,-0.2938) out=(-10.3210,4.4506,-0.2938) 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.2938 dpMove=-0.4012 iDist=1.9289 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.3210,4.4506,-0.2938) mvmt=(0.1212,0.2006,0.5337) 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.4960,0.3025,1.3314) mvmt=(0.1212,0.2006,0.5337) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4790,0.0625,1.2264) mvmt=(0.1212,0.2006,0.5337) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4790,-2.1487,-0.1236) mvmt=(0.1212,0.2006,0.5337) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4003,-2.7049,2.7307) mvmt=(-0.1369,0.1902,0.5337) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3210,4.4506,-0.2738) mvmt=(0.1212,0.2006,0.5337) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3210,4.4506,-0.2938) mvmt=(0.1212,0.2006,0.5337) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.049,93.726) lpos=(-10.321,4.451,-0.294) lprev=(-10.442,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.049,93.527) lpos=(-10.321,4.451,-0.493) lprev=(-10.442,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3210,4.2500,-0.8275) mvmt=(0.1212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.250,93.192) lpos=(-10.321,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4960,0.1020,0.7977) mvmt=(0.1212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3210,4.2500,-0.8275) mvmt=(0.1212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.250,93.192) lpos=(-10.321,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4960,0.1020,0.7977) mvmt=(0.1212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4960,0.1020,0.7977) out=(-0.4960,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3210,4.2500,-0.4944) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.250,93.526) lpos=(-10.321,4.250,-0.494) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3210,4.2500,-0.4944) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.3210,4.2500,-0.4944) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4960,0.1020,1.1308) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4790,-0.1380,1.0258) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4790,-2.3493,-0.3242) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5847,-2.7836,2.5301) mvmt=(0.0476,0.1115,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3210,4.2500,-0.4744) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3210,4.2500,-0.4944) mvmt=(0.1212,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.821,7.250,93.526) lpos=(-10.321,4.250,-0.494) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4423,4.4547,-0.4885) mvmt=(0.0000,0.2047,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4547,-0.4885) mvmt=(0.0000,0.2047,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.045,93.531) lpos=(-10.442,4.455,-0.489) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4423,4.4547,-0.4885) mvmt=(0.0000,0.2047,0.3390) 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.4423,4.4547,-0.4885) mvmt=(0.0000,0.2047,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6173,0.3067,1.1367) mvmt=(0.0000,0.2047,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,0.0667,1.0317) mvmt=(0.0000,0.2047,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.1446,-0.3183) mvmt=(0.0000,0.2047,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3489,-2.8148,2.5360) mvmt=(-0.1883,0.0803,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4547,-0.4685) mvmt=(0.0000,0.2047,0.3390) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.045,93.531) lpos=(-10.442,4.455,-0.489) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3400,4.4638,-0.4794) mvmt=(0.1023,0.2138,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3400,4.4638,-0.4794) mvmt=(0.1023,0.2138,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.840,7.036,93.541) lpos=(-10.340,4.464,-0.479) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3400,4.4638,-0.4794) mvmt=(0.1023,0.2138,0.3481) 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.3400,4.4638,-0.4794) mvmt=(0.1023,0.2138,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5150,0.3158,1.1458) mvmt=(0.1023,0.2138,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4600,0.0758,1.0408) mvmt=(0.1023,0.2138,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4600,-2.1355,-0.3092) mvmt=(0.1023,0.2138,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3806,-2.7172,2.5451) mvmt=(-0.1565,0.1780,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3400,4.4638,-0.4594) mvmt=(0.1023,0.2138,0.3481) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.840,7.036,93.541) lpos=(-10.340,4.464,-0.479) lprev=(-10.442,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3400,4.2500,-0.8275) mvmt=(0.1023,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.840,7.250,93.192) lpos=(-10.340,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5150,0.1020,0.7977) mvmt=(0.1023,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3400,4.2500,-0.8275) mvmt=(0.1023,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.840,7.250,93.192) lpos=(-10.340,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5150,0.1020,0.7977) mvmt=(0.1023,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5150,0.1020,0.7977) out=(-0.5150,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3400,4.2500,-0.4944) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.840,7.250,93.526) lpos=(-10.340,4.250,-0.494) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3400,4.2500,-0.4944) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.3400,4.2500,-0.4944) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5150,0.1020,1.1308) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4600,-0.1380,1.0258) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4600,-2.3493,-0.3242) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5773,-2.8011,2.5301) mvmt=(0.0401,0.0941,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3400,4.2500,-0.4744) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3400,4.2500,-0.4944) mvmt=(0.1023,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.840,7.250,93.526) lpos=(-10.340,4.250,-0.494) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4423,4.4640,-0.4793) mvmt=(0.0000,0.2139,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4640,-0.4793) mvmt=(0.0000,0.2139,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.036,93.541) lpos=(-10.442,4.464,-0.479) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4423,4.4640,-0.4793) mvmt=(0.0000,0.2139,0.3482) 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.4423,4.4640,-0.4793) mvmt=(0.0000,0.2139,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6173,0.3159,1.1459) mvmt=(0.0000,0.2139,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,0.0759,1.0409) mvmt=(0.0000,0.2139,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3577,-2.1354,-0.3091) mvmt=(0.0000,0.2139,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3404,-2.8112,2.5452) mvmt=(-0.1968,0.0839,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4423,4.4640,-0.4593) mvmt=(0.0000,0.2139,0.3482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.036,93.541) lpos=(-10.442,4.464,-0.479) lprev=(-10.442,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4152,4.4667,-0.4766) mvmt=(0.0271,0.2166,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4152,4.4667,-0.4766) mvmt=(0.0271,0.2166,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.033,93.543) lpos=(-10.415,4.467,-0.477) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4152,4.4667,-0.4766) mvmt=(0.0271,0.2166,0.3510) 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.4152,4.4667,-0.4766) mvmt=(0.0271,0.2166,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5902,0.3186,1.1486) mvmt=(0.0271,0.2166,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3848,0.0786,1.0436) mvmt=(0.0271,0.2166,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3848,-2.1326,-0.3064) mvmt=(0.0271,0.2166,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3485,-2.7852,2.5479) mvmt=(-0.1886,0.1099,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4152,4.4667,-0.4566) mvmt=(0.0271,0.2166,0.3510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.033,93.543) lpos=(-10.415,4.467,-0.477) lprev=(-10.442,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4152,4.2500,-0.8275) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.250,93.192) lpos=(-10.415,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5902,0.1020,0.7977) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3848,-0.1380,0.6927) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3848,-2.3493,-0.6573) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4152,4.2500,-0.8075) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4152,4.2500,-1.5775) mvmt=(0.0271,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.250,92.442) lpos=(-10.415,4.250,-1.578) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5902,0.1020,0.0477) mvmt=(0.0271,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3848,-0.1380,-0.0573) mvmt=(0.0271,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3848,-0.1380,-0.0573) out=(0.3848,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4152,4.2500,-0.8275) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.250,93.192) lpos=(-10.415,4.250,-0.828) lprev=(-10.442,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5902,0.1020,0.7977) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3848,-0.1380,0.6927) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3848,-2.3493,-0.6573) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4152,4.2500,-0.8075) mvmt=(0.0271,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4247,4.4561,-0.6144) mvmt=(-0.0096,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4247,4.4561,-0.6144) mvmt=(-0.0096,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.925,7.044,93.406) lpos=(-10.425,4.456,-0.614) lprev=(-10.415,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4247,4.4561,-0.6144) mvmt=(-0.0096,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=(-0.5997,0.3080,1.0108) mvmt=(-0.0096,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3753,0.0680,0.9058) mvmt=(-0.0096,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3753,-2.1432,-0.4442) mvmt=(-0.0096,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3545,-2.7982,2.4101) mvmt=(-0.1933,0.0720,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4247,4.4561,-0.5944) mvmt=(-0.0096,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.925,7.044,93.406) lpos=(-10.425,4.456,-0.614) lprev=(-10.415,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4247,4.2500,-0.8275) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.925,7.250,93.192) lpos=(-10.425,4.250,-0.828) lprev=(-10.415,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5997,0.1020,0.7977) mvmt=(-0.0096,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3753,-0.1380,0.6927) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3753,-2.3493,-0.6573) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4247,4.2500,-0.8075) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4247,4.2500,-1.5775) mvmt=(-0.0096,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.925,7.250,92.442) lpos=(-10.425,4.250,-1.578) lprev=(-10.415,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5997,0.1020,0.0477) mvmt=(-0.0096,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3753,-0.1380,-0.0573) mvmt=(-0.0096,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3753,-0.1380,-0.0573) out=(0.3753,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4247,4.2500,-0.8275) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.925,7.250,93.192) lpos=(-10.425,4.250,-0.828) lprev=(-10.415,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5997,0.1020,0.7977) mvmt=(-0.0096,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3753,-0.1380,0.6927) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3753,-2.3493,-0.6573) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4247,4.2500,-0.8075) mvmt=(-0.0096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4712,4.4568,-0.6136) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.043,93.406) lpos=(-10.471,4.457,-0.614) lprev=(-10.425,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4712,4.4568,-0.6136) mvmt=(-0.0464,0.2068,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=(-0.6462,0.3088,1.0116) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,0.0688,0.9066) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,-2.1425,-0.4434) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3356,-2.8406,2.4109) mvmt=(-0.2084,0.0384,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4712,4.4568,-0.5936) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4712,4.4568,-0.6136) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.043,93.406) lpos=(-10.471,4.457,-0.614) lprev=(-10.425,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4712,4.4568,-0.6136) mvmt=(-0.0464,0.2068,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=(-0.6462,0.3088,1.0116) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,0.0688,0.9066) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,-2.1425,-0.4434) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3356,-2.8406,2.4109) mvmt=(-0.2084,0.0384,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4712,4.4568,-0.5936) mvmt=(-0.0464,0.2068,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4712,4.2500,-0.8275) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.250,93.192) lpos=(-10.471,4.250,-0.828) lprev=(-10.425,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6462,0.1020,0.7977) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,-0.1380,0.6927) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,-2.3493,-0.6573) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4712,4.2500,-0.8075) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4712,4.2500,-1.5775) mvmt=(-0.0464,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.250,92.442) lpos=(-10.471,4.250,-1.578) lprev=(-10.425,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6462,0.1020,0.0477) mvmt=(-0.0464,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,-0.1380,-0.0573) mvmt=(-0.0464,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3288,-0.1380,-0.0573) out=(0.3288,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4712,4.2500,-0.8275) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.250,93.192) lpos=(-10.471,4.250,-0.828) lprev=(-10.425,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6462,0.1020,0.7977) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,-0.1380,0.6927) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3288,-2.3493,-0.6573) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4712,4.2500,-0.8075) mvmt=(-0.0464,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5554,4.4564,-0.6141) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.044,93.406) lpos=(-10.555,4.456,-0.614) lprev=(-10.471,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5554,4.4564,-0.6141) mvmt=(-0.0842,0.2063,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=(-0.7304,0.3083,1.0111) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,0.0683,0.9061) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,-2.1429,-0.4439) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3030,-2.9182,2.4104) mvmt=(-0.2228,0.0035,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5554,4.4564,-0.5941) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5554,4.4564,-0.6141) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.044,93.406) lpos=(-10.555,4.456,-0.614) lprev=(-10.471,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5554,4.4564,-0.6141) mvmt=(-0.0842,0.2063,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=(-0.7304,0.3083,1.0111) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,0.0683,0.9061) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,-2.1429,-0.4439) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3030,-2.9182,2.4104) mvmt=(-0.2228,0.0035,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5554,4.4564,-0.5941) mvmt=(-0.0842,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5554,4.2500,-0.8275) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.250,93.192) lpos=(-10.555,4.250,-0.828) lprev=(-10.471,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7304,0.1020,0.7977) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,-0.1380,0.6927) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,-2.3493,-0.6573) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5554,4.2500,-0.8075) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5554,4.2500,-1.5775) mvmt=(-0.0842,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.250,92.442) lpos=(-10.555,4.250,-1.578) lprev=(-10.471,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7304,0.1020,0.0477) mvmt=(-0.0842,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,-0.1380,-0.0573) mvmt=(-0.0842,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2446,-0.1380,-0.0573) out=(0.2446,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5554,4.2500,-0.8275) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.250,93.192) lpos=(-10.555,4.250,-0.828) lprev=(-10.471,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7304,0.1020,0.7977) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,-0.1380,0.6927) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2446,-2.3493,-0.6573) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5554,4.2500,-0.8075) mvmt=(-0.0842,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6743,4.4497,-0.6210) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.174,7.050,93.399) lpos=(-10.674,4.450,-0.621) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6743,4.4497,-0.6210) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8493,0.3016,1.0042) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,0.0616,0.8992) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,-2.1496,-0.4508) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2625,-3.0302,2.4035) mvmt=(-0.2303,-0.0310,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6743,4.4497,-0.6010) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6743,4.4497,-0.6210) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.174,7.050,93.399) lpos=(-10.674,4.450,-0.621) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6743,4.4497,-0.6210) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8493,0.3016,1.0042) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,0.0616,0.8992) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,-2.1496,-0.4508) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2625,-3.0302,2.4035) mvmt=(-0.2303,-0.0310,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6743,4.4497,-0.6010) mvmt=(-0.1189,0.1996,0.2065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6743,4.2500,-0.8275) mvmt=(-0.1189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.174,7.250,93.192) lpos=(-10.674,4.250,-0.828) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8493,0.1020,0.7977) mvmt=(-0.1189,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,-0.1380,0.6927) mvmt=(-0.1189,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,-2.3493,-0.6573) mvmt=(-0.1189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6743,4.2500,-0.8075) mvmt=(-0.1189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6743,4.2500,-1.5775) mvmt=(-0.1189,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.174,7.250,92.442) lpos=(-10.674,4.250,-1.578) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8493,0.1020,0.0477) mvmt=(-0.1189,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,-0.1380,-0.0573) mvmt=(-0.1189,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1257,-0.1380,-0.0573) out=(0.1257,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6743,4.2500,-0.8275) mvmt=(-0.1189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.174,7.250,93.192) lpos=(-10.674,4.250,-0.828) lprev=(-10.555,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8493,0.1020,0.7977) mvmt=(-0.1189,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,-0.1380,0.6927) mvmt=(-0.1189,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1257,-2.3493,-0.6573) mvmt=(-0.1189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6743,4.2500,-0.8075) mvmt=(-0.1189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8194,4.4353,-0.6359) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,7.065,93.384) lpos=(-10.819,4.435,-0.636) lprev=(-10.674,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8194,4.4353,-0.6359) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9944,0.2873,0.9893) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,0.0473,0.8843) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-2.1640,-0.4657) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2188,-3.1693,2.3886) mvmt=(-0.2273,-0.0608,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8194,4.4353,-0.6159) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8194,4.4353,-0.6359) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,7.065,93.384) lpos=(-10.819,4.435,-0.636) lprev=(-10.674,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8194,4.4353,-0.6359) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9944,0.2873,0.9893) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,0.0473,0.8843) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-2.1640,-0.4657) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2188,-3.1693,2.3886) mvmt=(-0.2273,-0.0608,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8194,4.4353,-0.6159) mvmt=(-0.1451,0.1853,0.1917) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8194,4.2500,-0.8275) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,7.250,93.192) lpos=(-10.819,4.250,-0.828) lprev=(-10.674,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9944,0.1020,0.7977) mvmt=(-0.1451,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-0.1380,0.6927) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-2.3493,-0.6573) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8194,4.2500,-0.8075) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8194,4.2500,-1.5775) mvmt=(-0.1451,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,7.250,92.442) lpos=(-10.819,4.250,-1.578) lprev=(-10.674,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9944,0.1020,0.0477) mvmt=(-0.1451,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-0.1380,-0.0573) mvmt=(-0.1451,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0194,-0.1380,-0.0573) out=(-0.0194,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8194,4.2500,-0.8275) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,7.250,93.192) lpos=(-10.819,4.250,-0.828) lprev=(-10.674,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9944,0.1020,0.7977) mvmt=(-0.1451,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-0.1380,0.6927) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-2.3493,-0.6573) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8194,4.2500,-0.8075) mvmt=(-0.1451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0017,4.4343,-0.6369) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.066,93.383) lpos=(-11.002,4.434,-0.637) lprev=(-10.819,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4343,-0.6369) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2863,0.9883) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0463,0.8833) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1650,-0.4667) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4343,-0.6169) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4343,-0.6369) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.066,93.383) lpos=(-11.002,4.434,-0.637) lprev=(-10.819,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4343,-0.6369) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2863,0.9883) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0463,0.8833) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1650,-0.4667) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4343,-0.6169) mvmt=(-0.1823,0.1843,0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.2500,-0.8275) mvmt=(-0.1823,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.250,93.192) lpos=(-11.002,4.250,-0.828) lprev=(-10.819,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1767,0.1020,0.7977) mvmt=(-0.1823,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-0.1380,0.6927) mvmt=(-0.1823,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.3493,-0.6573) mvmt=(-0.1823,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.2500,-0.8075) mvmt=(-0.1823,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.2500,-1.5775) mvmt=(-0.1823,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.250,92.442) lpos=(-11.002,4.250,-1.578) lprev=(-10.819,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1767,0.1020,0.0477) mvmt=(-0.1823,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-0.1380,-0.0573) mvmt=(-0.1823,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2017,-0.1380,-0.0573) out=(-0.2017,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0017,4.2500,-0.8275) mvmt=(-0.1823,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.250,93.192) lpos=(-11.002,4.250,-0.828) lprev=(-10.819,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1767,0.1020,0.7977) mvmt=(-0.1823,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-0.1380,0.6927) mvmt=(-0.1823,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.3493,-0.6573) mvmt=(-0.1823,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.2500,-0.8075) mvmt=(-0.1823,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2013,4.4165,-0.6553) mvmt=(-0.1997,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2013,4.4165,-0.6553) mvmt=(-0.1997,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.701,7.083,93.365) lpos=(-11.201,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2013,4.4165,-0.6553) mvmt=(-0.1997,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3763,0.2685,0.9699) mvmt=(-0.1997,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4013,0.0285,0.8649) mvmt=(-0.1997,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4013,-2.1828,-0.4851) mvmt=(-0.1997,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2013,4.4165,-0.6353) mvmt=(-0.1997,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.701,7.083,93.365) lpos=(-11.201,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4165,-0.6553) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.083,93.365) lpos=(-11.002,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4165,-0.6553) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2685,0.9699) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0285,0.8649) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1828,-0.4851) mvmt=(-0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4165,-0.6353) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4165,-0.6553) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.083,93.365) lpos=(-11.002,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4165,-0.6553) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2685,0.9699) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0285,0.8649) mvmt=(0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1828,-0.4851) mvmt=(-0.0000,0.1665,0.1722) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4165,-0.6353) mvmt=(0.0000,0.1665,0.1722) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2372,4.4242,-0.6473) mvmt=(-0.2355,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2372,4.4242,-0.6473) mvmt=(-0.2355,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.373) lpos=(-11.237,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2372,4.4242,-0.6473) mvmt=(-0.2355,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4122,0.2762,0.9779) mvmt=(-0.2355,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4371,0.0362,0.8729) mvmt=(-0.2355,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4371,-2.1751,-0.4771) mvmt=(-0.2355,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2372,4.4242,-0.6273) mvmt=(-0.2355,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.373) lpos=(-11.237,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6473) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.373) lpos=(-11.002,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6473) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2762,0.9779) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0362,0.8729) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1751,-0.4771) mvmt=(-0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6273) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6473) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.373) lpos=(-11.002,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6473) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2762,0.9779) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0362,0.8729) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1751,-0.4771) mvmt=(-0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6273) mvmt=(0.0000,0.1742,0.1802) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2344,4.4222,-0.6495) mvmt=(-0.2327,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2344,4.4222,-0.6495) mvmt=(-0.2327,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.734,7.078,93.371) lpos=(-11.234,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2344,4.4222,-0.6495) mvmt=(-0.2327,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4094,0.2741,0.9757) mvmt=(-0.2327,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4344,0.0341,0.8708) mvmt=(-0.2327,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4344,-2.1771,-0.4793) mvmt=(-0.2327,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2344,4.4222,-0.6295) mvmt=(-0.2327,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.734,7.078,93.371) lpos=(-11.234,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4222,-0.6495) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.078,93.371) lpos=(-11.002,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4222,-0.6495) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2741,0.9757) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0341,0.8708) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1771,-0.4793) mvmt=(-0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4222,-0.6295) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4222,-0.6495) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.078,93.371) lpos=(-11.002,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4222,-0.6495) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2741,0.9757) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0341,0.8708) mvmt=(0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1771,-0.4793) mvmt=(-0.0000,0.1721,0.1781) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4222,-0.6295) mvmt=(0.0000,0.1721,0.1781) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2347,4.4224,-0.6492) mvmt=(-0.2330,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2347,4.4224,-0.6492) mvmt=(-0.2330,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.735,7.078,93.371) lpos=(-11.235,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2347,4.4224,-0.6492) mvmt=(-0.2330,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4097,0.2744,0.9760) mvmt=(-0.2330,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4347,0.0344,0.8710) mvmt=(-0.2330,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4347,-2.1769,-0.4790) mvmt=(-0.2330,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2347,4.4224,-0.6292) mvmt=(-0.2330,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.735,7.078,93.371) lpos=(-11.235,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4224,-0.6492) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.078,93.371) lpos=(-11.002,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4224,-0.6492) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2744,0.9760) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0344,0.8710) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1769,-0.4790) mvmt=(-0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4224,-0.6292) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4224,-0.6492) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.078,93.371) lpos=(-11.002,4.422,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4224,-0.6492) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2744,0.9760) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0344,0.8710) mvmt=(0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1769,-0.4790) mvmt=(-0.0000,0.1724,0.1783) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4224,-0.6292) mvmt=(0.0000,0.1724,0.1783) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2371,4.4242,-0.6474) mvmt=(-0.2354,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2371,4.4242,-0.6474) mvmt=(-0.2354,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.373) lpos=(-11.237,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2371,4.4242,-0.6474) mvmt=(-0.2354,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4121,0.2761,0.9778) mvmt=(-0.2354,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4371,0.0361,0.8728) mvmt=(-0.2354,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4371,-2.1751,-0.4772) mvmt=(-0.2354,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2371,4.4242,-0.6274) mvmt=(-0.2354,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.373) lpos=(-11.237,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6474) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.373) lpos=(-11.002,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6474) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2761,0.9778) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0361,0.8728) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1751,-0.4772) mvmt=(-0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6274) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6474) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.373) lpos=(-11.002,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6474) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2761,0.9778) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0361,0.8728) mvmt=(0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1751,-0.4772) mvmt=(-0.0000,0.1742,0.1802) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4242,-0.6274) mvmt=(0.0000,0.1742,0.1802) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2399,4.4263,-0.6452) mvmt=(-0.2383,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2399,4.4263,-0.6452) mvmt=(-0.2383,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.740,7.074,93.375) lpos=(-11.240,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2399,4.4263,-0.6452) mvmt=(-0.2383,0.1763,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.4149,0.2782,0.9800) mvmt=(-0.2383,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4399,0.0382,0.8750) mvmt=(-0.2383,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4399,-2.1730,-0.4750) mvmt=(-0.2383,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2399,4.4263,-0.6252) mvmt=(-0.2383,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.740,7.074,93.375) lpos=(-11.240,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4263,-0.6452) mvmt=(0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.074,93.375) lpos=(-11.002,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4263,-0.6452) mvmt=(0.0000,0.1763,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.1767,0.2782,0.9800) mvmt=(0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0382,0.8750) mvmt=(0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1730,-0.4750) mvmt=(-0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4263,-0.6252) mvmt=(0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4263,-0.6452) mvmt=(0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.074,93.375) lpos=(-11.002,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4263,-0.6452) mvmt=(0.0000,0.1763,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.1767,0.2782,0.9800) mvmt=(0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0382,0.8750) mvmt=(0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1730,-0.4750) mvmt=(-0.0000,0.1763,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4263,-0.6252) mvmt=(0.0000,0.1763,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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2368,4.4239,-0.6476) mvmt=(-0.2351,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2368,4.4239,-0.6476) mvmt=(-0.2351,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.372) lpos=(-11.237,4.424,-0.648) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2368,4.4239,-0.6476) mvmt=(-0.2351,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4118,0.2759,0.9776) mvmt=(-0.2351,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4368,0.0359,0.8726) mvmt=(-0.2351,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4368,-2.1754,-0.4774) mvmt=(-0.2351,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2368,4.4239,-0.6276) mvmt=(-0.2351,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.372) lpos=(-11.237,4.424,-0.648) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4239,-0.6476) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.372) lpos=(-11.002,4.424,-0.648) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4239,-0.6476) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2759,0.9776) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0359,0.8726) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1754,-0.4774) mvmt=(-0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4239,-0.6276) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4239,-0.6476) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.372) lpos=(-11.002,4.424,-0.648) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4239,-0.6476) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2759,0.9776) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0359,0.8726) mvmt=(0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1754,-0.4774) mvmt=(-0.0000,0.1739,0.1799) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4239,-0.6276) mvmt=(0.0000,0.1739,0.1799) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2370,4.4241,-0.6475) mvmt=(-0.2353,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2370,4.4241,-0.6475) mvmt=(-0.2353,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.373) lpos=(-11.237,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2370,4.4241,-0.6475) mvmt=(-0.2353,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4120,0.2760,0.9777) mvmt=(-0.2353,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4370,0.0360,0.8727) mvmt=(-0.2353,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4370,-2.1752,-0.4773) mvmt=(-0.2353,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2370,4.4241,-0.6275) mvmt=(-0.2353,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.737,7.076,93.373) lpos=(-11.237,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4241,-0.6475) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.373) lpos=(-11.002,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4241,-0.6475) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2760,0.9777) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0360,0.8727) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1752,-0.4773) mvmt=(-0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4241,-0.6275) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4241,-0.6475) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.076,93.373) lpos=(-11.002,4.424,-0.647) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4241,-0.6475) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2760,0.9777) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0360,0.8727) mvmt=(0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1752,-0.4773) mvmt=(-0.0000,0.1741,0.1801) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4241,-0.6275) mvmt=(0.0000,0.1741,0.1801) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2338,4.4218,-0.6499) mvmt=(-0.2321,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2338,4.4218,-0.6499) mvmt=(-0.2321,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.734,7.078,93.370) lpos=(-11.234,4.422,-0.650) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2338,4.4218,-0.6499) mvmt=(-0.2321,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4088,0.2737,0.9753) mvmt=(-0.2321,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4338,0.0337,0.8703) mvmt=(-0.2321,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4338,-2.1775,-0.4797) mvmt=(-0.2321,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2338,4.4218,-0.6299) mvmt=(-0.2321,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.734,7.078,93.370) lpos=(-11.234,4.422,-0.650) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4218,-0.6499) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.078,93.370) lpos=(-11.002,4.422,-0.650) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4218,-0.6499) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2737,0.9753) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0337,0.8703) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1775,-0.4797) mvmt=(-0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4218,-0.6299) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4218,-0.6499) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.078,93.370) lpos=(-11.002,4.422,-0.650) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4218,-0.6499) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2737,0.9753) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0337,0.8703) mvmt=(0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1775,-0.4797) mvmt=(-0.0000,0.1717,0.1777) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4218,-0.6299) mvmt=(0.0000,0.1717,0.1777) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2268,4.4166,-0.6553) mvmt=(-0.2251,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2268,4.4166,-0.6553) mvmt=(-0.2251,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.727,7.083,93.365) lpos=(-11.227,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2268,4.4166,-0.6553) mvmt=(-0.2251,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4018,0.2685,0.9699) mvmt=(-0.2251,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4268,0.0285,0.8649) mvmt=(-0.2251,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4268,-2.1828,-0.4851) mvmt=(-0.2251,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2268,4.4166,-0.6353) mvmt=(-0.2251,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.727,7.083,93.365) lpos=(-11.227,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4166,-0.6553) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.083,93.365) lpos=(-11.002,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4166,-0.6553) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2685,0.9699) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0285,0.8649) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1828,-0.4851) mvmt=(-0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4166,-0.6353) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4166,-0.6553) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.083,93.365) lpos=(-11.002,4.417,-0.655) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4166,-0.6553) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2685,0.9699) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0285,0.8649) mvmt=(0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1828,-0.4851) mvmt=(-0.0000,0.1665,0.1723) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4166,-0.6353) mvmt=(0.0000,0.1665,0.1723) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2312,4.4198,-0.6519) mvmt=(-0.2295,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2312,4.4198,-0.6519) mvmt=(-0.2295,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.731,7.080,93.368) lpos=(-11.231,4.420,-0.652) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2312,4.4198,-0.6519) mvmt=(-0.2295,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.4062,0.2718,0.9733) mvmt=(-0.2295,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4312,0.0318,0.8683) mvmt=(-0.2295,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4312,-2.1795,-0.4817) mvmt=(-0.2295,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2312,4.4198,-0.6319) mvmt=(-0.2295,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.731,7.080,93.368) lpos=(-11.231,4.420,-0.652) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4198,-0.6519) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.080,93.368) lpos=(-11.002,4.420,-0.652) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4198,-0.6519) 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.1767,0.2718,0.9733) 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.2017,0.0318,0.8683) 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.2017,-2.1795,-0.4817) 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.0017,4.4198,-0.6319) 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.0017,4.4198,-0.6519) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.080,93.368) lpos=(-11.002,4.420,-0.652) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4198,-0.6519) 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.1767,0.2718,0.9733) 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.2017,0.0318,0.8683) 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.2017,-2.1795,-0.4817) 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.0017,4.4198,-0.6319) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2258,4.4158,-0.6560) mvmt=(-0.2241,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2258,4.4158,-0.6560) mvmt=(-0.2241,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.726,7.084,93.364) lpos=(-11.226,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2258,4.4158,-0.6560) mvmt=(-0.2241,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4008,0.2678,0.9692) mvmt=(-0.2241,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4258,0.0278,0.8642) mvmt=(-0.2241,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4258,-2.1835,-0.4858) mvmt=(-0.2241,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2258,4.4158,-0.6360) mvmt=(-0.2241,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.726,7.084,93.364) lpos=(-11.226,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4158,-0.6560) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.084,93.364) lpos=(-11.002,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4158,-0.6560) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2678,0.9692) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0278,0.8642) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1835,-0.4858) mvmt=(-0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4158,-0.6360) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4158,-0.6560) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.084,93.364) lpos=(-11.002,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4158,-0.6560) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2678,0.9692) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0278,0.8642) mvmt=(0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1835,-0.4858) mvmt=(-0.0000,0.1658,0.1715) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4158,-0.6360) mvmt=(0.0000,0.1658,0.1715) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2254,4.4156,-0.6563) mvmt=(-0.2238,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2254,4.4156,-0.6563) mvmt=(-0.2238,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.725,7.084,93.364) lpos=(-11.225,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2254,4.4156,-0.6563) mvmt=(-0.2238,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4004,0.2675,0.9689) mvmt=(-0.2238,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4254,0.0275,0.8639) mvmt=(-0.2238,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4254,-2.1837,-0.4861) mvmt=(-0.2238,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2254,4.4156,-0.6363) mvmt=(-0.2238,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.725,7.084,93.364) lpos=(-11.225,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4156,-0.6563) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.084,93.364) lpos=(-11.002,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4156,-0.6563) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2675,0.9689) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0275,0.8639) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1837,-0.4861) mvmt=(-0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4156,-0.6363) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4156,-0.6563) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.084,93.364) lpos=(-11.002,4.416,-0.656) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4156,-0.6563) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2675,0.9689) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0275,0.8639) mvmt=(0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1837,-0.4861) mvmt=(-0.0000,0.1655,0.1712) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4156,-0.6363) mvmt=(0.0000,0.1655,0.1712) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2300,4.4190,-0.6528) mvmt=(-0.2284,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2300,4.4190,-0.6528) mvmt=(-0.2284,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.730,7.081,93.367) lpos=(-11.230,4.419,-0.653) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2300,4.4190,-0.6528) mvmt=(-0.2284,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4050,0.2709,0.9724) mvmt=(-0.2284,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4300,0.0309,0.8674) mvmt=(-0.2284,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4300,-2.1803,-0.4826) mvmt=(-0.2284,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2300,4.4190,-0.6328) mvmt=(-0.2284,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.730,7.081,93.367) lpos=(-11.230,4.419,-0.653) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4190,-0.6528) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.081,93.367) lpos=(-11.002,4.419,-0.653) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4190,-0.6528) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2709,0.9724) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0309,0.8674) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1803,-0.4826) mvmt=(-0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4190,-0.6328) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4190,-0.6528) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.081,93.367) lpos=(-11.002,4.419,-0.653) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4190,-0.6528) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2709,0.9724) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0309,0.8674) mvmt=(0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1803,-0.4826) mvmt=(-0.0000,0.1689,0.1748) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4190,-0.6328) mvmt=(0.0000,0.1689,0.1748) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2147,4.4230,-0.6486) mvmt=(-0.2130,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2147,4.4230,-0.6486) mvmt=(-0.2130,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.715,7.077,93.371) lpos=(-11.215,4.423,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2147,4.4230,-0.6486) mvmt=(-0.2130,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3897,0.2750,0.9766) mvmt=(-0.2130,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4147,0.0350,0.8716) mvmt=(-0.2130,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4147,-2.1763,-0.4784) mvmt=(-0.2130,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2147,4.4230,-0.6286) mvmt=(-0.2130,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.715,7.077,93.371) lpos=(-11.215,4.423,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4230,-0.6486) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.077,93.371) lpos=(-11.002,4.423,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4230,-0.6486) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2750,0.9766) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0350,0.8716) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1763,-0.4784) mvmt=(-0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4230,-0.6286) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4230,-0.6486) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.077,93.371) lpos=(-11.002,4.423,-0.649) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4230,-0.6486) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2750,0.9766) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0350,0.8716) mvmt=(0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1763,-0.4784) mvmt=(-0.0000,0.1730,0.1790) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4230,-0.6286) mvmt=(0.0000,0.1730,0.1790) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1807,4.4265,-0.6450) mvmt=(-0.1790,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1807,4.4265,-0.6450) mvmt=(-0.1790,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.681,7.074,93.375) lpos=(-11.181,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1807,4.4265,-0.6450) mvmt=(-0.1790,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3557,0.2784,0.9802) mvmt=(-0.1790,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3807,0.0384,0.8752) mvmt=(-0.1790,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3807,-2.1728,-0.4748) mvmt=(-0.1790,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1807,4.4265,-0.6250) mvmt=(-0.1790,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.681,7.074,93.375) lpos=(-11.181,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4265,-0.6450) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.074,93.375) lpos=(-11.002,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4265,-0.6450) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2784,0.9802) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0384,0.8752) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1728,-0.4748) mvmt=(-0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4265,-0.6250) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4265,-0.6450) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.074,93.375) lpos=(-11.002,4.426,-0.645) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4265,-0.6450) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2784,0.9802) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0384,0.8752) mvmt=(0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1728,-0.4748) mvmt=(-0.0000,0.1764,0.1825) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4265,-0.6250) mvmt=(0.0000,0.1764,0.1825) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1552,4.4404,-0.6306) mvmt=(-0.1535,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1552,4.4404,-0.6306) mvmt=(-0.1535,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.060,93.389) lpos=(-11.155,4.440,-0.631) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1552,4.4404,-0.6306) mvmt=(-0.1535,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3302,0.2923,0.9946) mvmt=(-0.1535,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3552,0.0523,0.8896) mvmt=(-0.1535,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3552,-2.1589,-0.4604) mvmt=(-0.1535,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1552,4.4404,-0.6106) mvmt=(-0.1535,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.060,93.389) lpos=(-11.155,4.440,-0.631) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4404,-0.6306) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.060,93.389) lpos=(-11.002,4.440,-0.631) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4404,-0.6306) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2923,0.9946) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0523,0.8896) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1589,-0.4604) mvmt=(-0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4404,-0.6106) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4404,-0.6306) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.060,93.389) lpos=(-11.002,4.440,-0.631) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4404,-0.6306) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2923,0.9946) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0523,0.8896) mvmt=(0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1589,-0.4604) mvmt=(-0.0000,0.1904,0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4404,-0.6106) mvmt=(0.0000,0.1904,0.1969) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1214,4.4456,-0.6252) mvmt=(-0.1198,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1214,4.4456,-0.6252) mvmt=(-0.1198,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.621,7.054,93.395) lpos=(-11.121,4.446,-0.625) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1214,4.4456,-0.6252) mvmt=(-0.1198,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2964,0.2976,1.0000) mvmt=(-0.1198,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3214,0.0576,0.8950) mvmt=(-0.1198,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3214,-2.1537,-0.4550) mvmt=(-0.1198,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1214,4.4456,-0.6052) mvmt=(-0.1198,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.621,7.054,93.395) lpos=(-11.121,4.446,-0.625) lprev=(-11.002,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4456,-0.6252) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.054,93.395) lpos=(-11.002,4.446,-0.625) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4456,-0.6252) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2976,1.0000) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0576,0.8950) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1537,-0.4550) mvmt=(-0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4456,-0.6052) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4456,-0.6252) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.502,7.054,93.395) lpos=(-11.002,4.446,-0.625) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0017,4.4456,-0.6252) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1767,0.2976,1.0000) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,0.0576,0.8950) mvmt=(0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2017,-2.1537,-0.4550) mvmt=(-0.0000,0.1956,0.2023) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0017,4.4456,-0.6052) mvmt=(0.0000,0.1956,0.2023) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0867,4.4486,-0.6221) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,7.051,93.398) lpos=(-11.087,4.449,-0.622) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0867,4.4486,-0.6221) mvmt=(-0.0851,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.2617,0.3005,1.0031) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,0.0605,0.8981) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,-2.1507,-0.4520) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0867,4.4486,-0.6021) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0867,4.4486,-0.6221) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,7.051,93.398) lpos=(-11.087,4.449,-0.622) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0867,4.4486,-0.6221) mvmt=(-0.0851,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.2617,0.3005,1.0031) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,0.0605,0.8981) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,-2.1507,-0.4520) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0867,4.4486,-0.6021) mvmt=(-0.0851,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0867,4.2500,-0.8275) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,7.250,93.192) lpos=(-11.087,4.250,-0.828) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2617,0.1020,0.7977) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,-0.1380,0.6927) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,-2.3493,-0.6573) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0867,4.2500,-0.8075) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0867,4.2500,-1.5775) mvmt=(-0.0851,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,7.250,92.442) lpos=(-11.087,4.250,-1.578) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2617,0.1020,0.0477) mvmt=(-0.0851,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,-0.1380,-0.0573) mvmt=(-0.0851,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2867,-0.1380,-0.0573) out=(-0.2867,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0867,4.2500,-0.8275) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.587,7.250,93.192) lpos=(-11.087,4.250,-0.828) lprev=(-11.002,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2617,0.1020,0.7977) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,-0.1380,0.6927) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2867,-2.3493,-0.6573) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0867,4.2500,-0.8075) mvmt=(-0.0851,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.7076) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.134,93.312) lpos=(-11.113,4.366,-0.708) lprev=(-11.087,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.2179,0.9176) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-0.0221,0.8126) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-2.2334,-0.5374) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.6876) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.7076) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.134,93.312) lpos=(-11.113,4.366,-0.708) lprev=(-11.087,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.2179,0.9176) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-0.0221,0.8126) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-2.2334,-0.5374) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.6876) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.2500,-0.8275) mvmt=(-0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.250,93.192) lpos=(-11.113,4.250,-0.828) lprev=(-11.087,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.1020,0.7977) mvmt=(-0.0260,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-0.1380,0.6927) mvmt=(-0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-2.3493,-0.6573) mvmt=(-0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.2500,-0.8075) mvmt=(-0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.2500,-1.5775) mvmt=(-0.0260,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.250,92.442) lpos=(-11.113,4.250,-1.578) lprev=(-11.087,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.1020,0.0477) mvmt=(-0.0260,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-0.1380,-0.0573) mvmt=(-0.0260,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3128,-0.1380,-0.0573) out=(-0.3128,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.1128,4.2500,-0.8275) mvmt=(-0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.250,93.192) lpos=(-11.113,4.250,-0.828) lprev=(-11.087,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.1020,0.7977) mvmt=(-0.0260,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-0.1380,0.6927) mvmt=(-0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-2.3493,-0.6573) mvmt=(-0.0260,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.2500,-0.8075) mvmt=(-0.0260,0.0000,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=(-11.1388,4.3659,-0.7076) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1388,4.3659,-0.7076) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.639,7.134,93.312) lpos=(-11.139,4.366,-0.708) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3138,0.2179,0.9176) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3388,-0.0221,0.8126) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3388,-2.2334,-0.5374) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1388,4.3659,-0.6876) mvmt=(-0.0260,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.639,7.134,93.312) lpos=(-11.139,4.366,-0.708) lprev=(-11.113,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.7076) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.134,93.312) lpos=(-11.113,4.366,-0.708) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.2179,0.9176) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-0.0221,0.8126) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-2.2334,-0.5374) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.6876) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.7076) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.134,93.312) lpos=(-11.113,4.366,-0.708) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.2179,0.9176) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-0.0221,0.8126) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3128,-2.2334,-0.5374) mvmt=(0.0000,0.1159,0.1199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1128,4.3659,-0.6876) mvmt=(0.0000,0.1159,0.1199) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1231,4.4527,-0.6179) mvmt=(-0.0103,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1231,4.4527,-0.6179) mvmt=(-0.0103,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.623,7.047,93.402) lpos=(-11.123,4.453,-0.618) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1231,4.4527,-0.6179) mvmt=(-0.0103,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.2981,0.3046,1.0073) mvmt=(-0.0103,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3231,0.0646,0.9023) mvmt=(-0.0103,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3231,-2.1466,-0.4477) mvmt=(-0.0103,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1231,4.4527,-0.5979) mvmt=(-0.0103,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.623,7.047,93.402) lpos=(-11.123,4.453,-0.618) lprev=(-11.113,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1128,4.4527,-0.6179) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.047,93.402) lpos=(-11.113,4.453,-0.618) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1128,4.4527,-0.6179) 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.2878,0.3046,1.0073) 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.3128,0.0646,0.9023) 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.3128,-2.1466,-0.4477) 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.1128,4.4527,-0.5979) 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.1128,4.4527,-0.6179) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.047,93.402) lpos=(-11.113,4.453,-0.618) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1128,4.4527,-0.6179) 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.2878,0.3046,1.0073) 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.3128,0.0646,0.9023) 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.3128,-2.1466,-0.4477) 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.1128,4.4527,-0.5979) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0880,4.4529,-0.6176) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.588,7.047,93.402) lpos=(-11.088,4.453,-0.618) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0880,4.4529,-0.6176) mvmt=(0.0248,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.2630,0.3049,1.0076) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,0.0649,0.9026) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,-2.1464,-0.4474) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0880,4.4529,-0.5976) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0880,4.4529,-0.6176) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.588,7.047,93.402) lpos=(-11.088,4.453,-0.618) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0880,4.4529,-0.6176) mvmt=(0.0248,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.2630,0.3049,1.0076) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,0.0649,0.9026) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,-2.1464,-0.4474) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0880,4.4529,-0.5976) mvmt=(0.0248,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0880,4.2500,-0.8275) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.588,7.250,93.192) lpos=(-11.088,4.250,-0.828) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2630,0.1020,0.7977) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,-0.1380,0.6927) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,-2.3493,-0.6573) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0880,4.2500,-0.8075) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0880,4.2500,-1.5775) mvmt=(0.0248,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.588,7.250,92.442) lpos=(-11.088,4.250,-1.578) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2630,0.1020,0.0477) mvmt=(0.0248,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,-0.1380,-0.0573) mvmt=(0.0248,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2879,-0.1380,-0.0573) out=(-0.2879,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0880,4.2500,-0.8275) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.588,7.250,93.192) lpos=(-11.088,4.250,-0.828) lprev=(-11.113,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2630,0.1020,0.7977) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,-0.1380,0.6927) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2879,-2.3493,-0.6573) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0880,4.2500,-0.8075) mvmt=(0.0248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0262,4.4553,-0.6152) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.045,93.405) lpos=(-11.026,4.455,-0.615) lprev=(-11.088,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0262,4.4553,-0.6152) mvmt=(0.0618,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.2012,0.3072,1.0100) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,0.0672,0.9050) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.1440,-0.4450) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.4553,-0.5952) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.4553,-0.6152) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.045,93.405) lpos=(-11.026,4.455,-0.615) lprev=(-11.088,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0262,4.4553,-0.6152) mvmt=(0.0618,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.2012,0.3072,1.0100) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,0.0672,0.9050) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.1440,-0.4450) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.4553,-0.5952) mvmt=(0.0618,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.2500,-0.8275) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.250,93.192) lpos=(-11.026,4.250,-0.828) lprev=(-11.088,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2012,0.1020,0.7977) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-0.1380,0.6927) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.3493,-0.6573) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.2500,-0.8075) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.2500,-1.5775) mvmt=(0.0618,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.250,92.442) lpos=(-11.026,4.250,-1.578) lprev=(-11.088,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2012,0.1020,0.0477) mvmt=(0.0618,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-0.1380,-0.0573) mvmt=(0.0618,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2262,-0.1380,-0.0573) out=(-0.2262,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0262,4.2500,-0.8275) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.526,7.250,93.192) lpos=(-11.026,4.250,-0.828) lprev=(-11.088,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2012,0.1020,0.7977) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-0.1380,0.6927) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2262,-2.3493,-0.6573) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0262,4.2500,-0.8075) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9331,4.4450,-0.6259) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.055,93.394) lpos=(-10.933,4.445,-0.626) lprev=(-11.026,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9331,4.4450,-0.6259) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1081,0.2969,0.9993) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,0.0569,0.8943) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,-2.1544,-0.4557) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9331,4.4450,-0.6059) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9331,4.4450,-0.6259) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.055,93.394) lpos=(-10.933,4.445,-0.626) lprev=(-11.026,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9331,4.4450,-0.6259) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1081,0.2969,0.9993) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,0.0569,0.8943) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,-2.1544,-0.4557) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9331,4.4450,-0.6059) mvmt=(0.0931,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9331,4.2500,-0.8275) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.250,93.192) lpos=(-10.933,4.250,-0.828) lprev=(-11.026,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1081,0.1020,0.7977) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,-0.1380,0.6927) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,-2.3493,-0.6573) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9331,4.2500,-0.8075) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9331,4.2500,-1.5775) mvmt=(0.0931,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.250,92.442) lpos=(-10.933,4.250,-1.578) lprev=(-11.026,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1081,0.1020,0.0477) mvmt=(0.0931,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,-0.1380,-0.0573) mvmt=(0.0931,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1331,-0.1380,-0.0573) out=(-0.1331,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9331,4.2500,-0.8275) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.433,7.250,93.192) lpos=(-10.933,4.250,-0.828) lprev=(-11.026,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1081,0.1020,0.7977) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,-0.1380,0.6927) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1331,-2.3493,-0.6573) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9331,4.2500,-0.8075) mvmt=(0.0931,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8131,4.4335,-0.6378) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.313,7.067,93.382) lpos=(-10.813,4.433,-0.638) lprev=(-10.933,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8131,4.4335,-0.6378) mvmt=(0.1199,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.9881,0.2854,0.9874) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,0.0454,0.8824) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,-2.1658,-0.4676) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8131,4.4335,-0.6178) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8131,4.4335,-0.6378) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.313,7.067,93.382) lpos=(-10.813,4.433,-0.638) lprev=(-10.933,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8131,4.4335,-0.6378) mvmt=(0.1199,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.9881,0.2854,0.9874) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,0.0454,0.8824) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,-2.1658,-0.4676) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8131,4.4335,-0.6178) mvmt=(0.1199,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8131,4.2500,-0.8275) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.313,7.250,93.192) lpos=(-10.813,4.250,-0.828) lprev=(-10.933,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9881,0.1020,0.7977) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,-0.1380,0.6927) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,-2.3493,-0.6573) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8131,4.2500,-0.8075) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8131,4.2500,-1.5775) mvmt=(0.1199,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.313,7.250,92.442) lpos=(-10.813,4.250,-1.578) lprev=(-10.933,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9881,0.1020,0.0477) mvmt=(0.1199,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,-0.1380,-0.0573) mvmt=(0.1199,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0131,-0.1380,-0.0573) out=(-0.0131,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8131,4.2500,-0.8275) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.313,7.250,93.192) lpos=(-10.813,4.250,-0.828) lprev=(-10.933,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9881,0.1020,0.7977) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,-0.1380,0.6927) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0131,-2.3493,-0.6573) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8131,4.2500,-0.8075) mvmt=(0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6477,4.4432,-0.6276) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.057,93.392) lpos=(-10.648,4.443,-0.628) lprev=(-10.813,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6477,4.4432,-0.6276) mvmt=(0.1654,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.8227,0.2952,0.9976) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,0.0552,0.8926) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,-2.1561,-0.4575) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6477,4.4432,-0.6077) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6477,4.4432,-0.6276) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.057,93.392) lpos=(-10.648,4.443,-0.628) lprev=(-10.813,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6477,4.4432,-0.6276) mvmt=(0.1654,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.8227,0.2952,0.9976) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,0.0552,0.8926) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,-2.1561,-0.4575) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6477,4.4432,-0.6077) mvmt=(0.1654,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6477,4.2500,-0.8275) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.250,93.192) lpos=(-10.648,4.250,-0.828) lprev=(-10.813,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8227,0.1020,0.7977) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,-0.1380,0.6927) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,-2.3493,-0.6573) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6477,4.2500,-0.8075) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6477,4.2500,-1.5775) mvmt=(0.1654,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.250,92.442) lpos=(-10.648,4.250,-1.578) lprev=(-10.813,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8227,0.1020,0.0477) mvmt=(0.1654,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,-0.1380,-0.0573) mvmt=(0.1654,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1523,-0.1380,-0.0573) out=(0.1523,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6477,4.2500,-0.8275) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.250,93.192) lpos=(-10.648,4.250,-0.828) lprev=(-10.813,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8227,0.1020,0.7977) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,-0.1380,0.6927) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1523,-2.3493,-0.6573) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6477,4.2500,-0.8075) mvmt=(0.1654,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4480,4.4361,-0.6350) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.064,93.385) lpos=(-10.448,4.436,-0.635) lprev=(-10.648,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4361,-0.6350) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.2881,0.9902) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0481,0.8852) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1632,-0.4648) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3637,-2.8274,2.3895) mvmt=(-0.0928,0.2567,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4361,-0.6150) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4361,-0.6350) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.064,93.385) lpos=(-10.448,4.436,-0.635) lprev=(-10.648,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4361,-0.6350) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.2881,0.9902) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0481,0.8852) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1632,-0.4648) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3637,-2.8274,2.3895) mvmt=(-0.0928,0.2567,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4361,-0.6150) mvmt=(0.1998,0.1861,0.1925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.2500,-0.8275) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.250,93.192) lpos=(-10.448,4.250,-0.828) lprev=(-10.648,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6230,0.1020,0.7977) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-0.1380,0.6927) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.3493,-0.6573) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.2500,-0.8075) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.2500,-1.5775) mvmt=(0.1998,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.250,92.442) lpos=(-10.448,4.250,-1.578) lprev=(-10.648,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6230,0.1020,0.0477) mvmt=(0.1998,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-0.1380,-0.0573) mvmt=(0.1998,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3520,-0.1380,-0.0573) out=(0.3520,-0.1380,0.6927) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4480,4.2500,-0.8275) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.250,93.192) lpos=(-10.448,4.250,-0.828) lprev=(-10.648,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6230,0.1020,0.7977) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-0.1380,0.6927) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.3493,-0.6573) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.2500,-0.8075) mvmt=(0.1998,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2281,4.4258,-0.6456) mvmt=(0.2198,0.1758,0.1819) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2281,4.4258,-0.6456) mvmt=(0.2198,0.1758,0.1819) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.074,93.374) lpos=(-10.228,4.426,-0.646) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2281,4.4258,-0.6456) mvmt=(0.2198,0.1758,0.1819) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4031,0.2778,0.9796) mvmt=(0.2198,0.1758,0.1819) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4031,0.2778,0.9796) out=(-0.4031,0.2778,1.3066) delta=(0.0000,0.0000,0.3271) deltaMag=0.3271 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4549 dpPos=0.2487 dpMove=-0.4243 iDist=0.5451 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.2281,4.4258,-0.3186) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.074,93.701) lpos=(-10.228,4.426,-0.319) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2281,4.4258,-0.3186) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[push-back] site=adjust_sphere in=(-10.2281,4.4258,-0.3186) out=(-10.2281,4.4258,-0.3186) 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.4549->0.4549 dpPos=-0.3186 dpMove=-0.2729 iDist=2.9259 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.2281,4.4258,-0.3186) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4031,0.2778,1.3066) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[push-back-disp] site=dispatch center=(0.5719,0.0378,1.2016) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[push-back-disp] site=dispatch center=(0.5719,-2.1735,-0.1484) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[push-back-disp] site=dispatch center=(0.4595,-2.6292,2.7059) mvmt=(-0.0755,0.2712,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[push-back-disp] site=dispatch center=(-10.2281,4.4258,-0.2986) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[push-back-disp] site=dispatch center=(-10.2281,4.4258,-0.3186) mvmt=(0.2198,0.1758,0.5089) collide=False insertType=1 objState=0x303 winterp=0.4549 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.074,93.701) lpos=(-10.228,4.426,-0.319) lprev=(-10.448,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.074,93.374) lpos=(-10.228,4.426,-0.646) lprev=(-10.448,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2281,4.2500,-0.8275) mvmt=(0.2198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.250,93.192) lpos=(-10.228,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4031,0.1020,0.7977) mvmt=(0.2198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4549 return=-1 +[push-back-disp] site=dispatch center=(-10.2281,4.2500,-0.8275) mvmt=(0.2198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.250,93.192) lpos=(-10.228,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4031,0.1020,0.7977) mvmt=(0.2198,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4031,0.1020,0.7977) out=(-0.4031,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2281,4.2500,-0.4944) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.250,93.526) lpos=(-10.228,4.250,-0.494) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2281,4.2500,-0.4944) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.2281,4.2500,-0.4944) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4031,0.1020,1.1308) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5719,-0.1380,1.0258) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5719,-2.3493,-0.3242) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.6212,-2.6982,2.5301) mvmt=(0.0863,0.2022,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2281,4.2500,-0.4744) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2281,4.2500,-0.4944) mvmt=(0.2198,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.728,7.250,93.526) lpos=(-10.228,4.250,-0.494) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4480,4.4310,-0.5123) mvmt=(0.0000,0.1809,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4310,-0.5123) mvmt=(0.0000,0.1809,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.069,93.508) lpos=(-10.448,4.431,-0.512) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4310,-0.5123) mvmt=(0.0000,0.1809,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.2829,1.1129) mvmt=(0.0000,0.1809,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0429,1.0079) mvmt=(0.0000,0.1809,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1684,-0.3421) mvmt=(0.0000,0.1809,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3685,-2.8294,2.5122) mvmt=(-0.1664,0.0710,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4310,-0.4923) mvmt=(0.0000,0.1809,0.3152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.069,93.508) lpos=(-10.448,4.431,-0.512) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2233,4.4360,-0.5072) mvmt=(0.2247,0.1860,0.3203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2233,4.4360,-0.5072) mvmt=(0.2247,0.1860,0.3203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.064,93.513) lpos=(-10.223,4.436,-0.507) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2233,4.4360,-0.5072) mvmt=(0.2247,0.1860,0.3203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3983,0.2880,1.1180) mvmt=(0.2247,0.1860,0.3203) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3983,0.2880,1.1180) out=(-0.3983,0.2880,1.3168) 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.2233,4.4360,-0.3084) mvmt=(0.2247,0.1860,0.5191) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.064,93.712) lpos=(-10.223,4.436,-0.308) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2233,4.4360,-0.3084) mvmt=(0.2247,0.1860,0.5191) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.2233,4.4360,-0.3084) out=(-10.2233,4.4360,-0.3084) 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.3084 dpMove=-0.4012 iDist=1.9652 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.2233,4.4360,-0.3084) mvmt=(0.2247,0.1860,0.5191) 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.3983,0.2880,1.3168) mvmt=(0.2247,0.1860,0.5191) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5767,0.0480,1.2118) mvmt=(0.2247,0.1860,0.5191) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5767,-2.1633,-0.1382) mvmt=(0.2247,0.1860,0.5191) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4520,-2.6208,2.7161) mvmt=(-0.0829,0.2796,0.5191) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2233,4.4360,-0.2884) mvmt=(0.2247,0.1860,0.5191) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2233,4.4360,-0.3084) mvmt=(0.2247,0.1860,0.5191) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.064,93.712) lpos=(-10.223,4.436,-0.308) lprev=(-10.448,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.064,93.513) lpos=(-10.223,4.436,-0.507) lprev=(-10.448,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2233,4.2500,-0.8275) mvmt=(0.2247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.250,93.192) lpos=(-10.223,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3983,0.1020,0.7977) mvmt=(0.2247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2233,4.2500,-0.8275) mvmt=(0.2247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.250,93.192) lpos=(-10.223,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3983,0.1020,0.7977) mvmt=(0.2247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3983,0.1020,0.7977) out=(-0.3983,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2233,4.2500,-0.4944) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.250,93.526) lpos=(-10.223,4.250,-0.494) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2233,4.2500,-0.4944) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.2233,4.2500,-0.4944) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3983,0.1020,1.1308) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5767,-0.1380,1.0258) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5767,-2.3493,-0.3242) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.6231,-2.6937,2.5301) mvmt=(0.0882,0.2067,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2233,4.2500,-0.4744) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2233,4.2500,-0.4944) mvmt=(0.2247,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.723,7.250,93.526) lpos=(-10.223,4.250,-0.494) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4480,4.4246,-0.5186) mvmt=(0.0000,0.1746,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4246,-0.5186) mvmt=(0.0000,0.1746,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.075,93.501) lpos=(-10.448,4.425,-0.519) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4246,-0.5186) mvmt=(0.0000,0.1746,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.2766,1.1066) mvmt=(0.0000,0.1746,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0366,1.0016) mvmt=(0.0000,0.1746,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1747,-0.3484) mvmt=(0.0000,0.1746,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3743,-2.8319,2.5059) mvmt=(-0.1606,0.0685,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4246,-0.4986) mvmt=(0.0000,0.1746,0.3089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.075,93.501) lpos=(-10.448,4.425,-0.519) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2237,4.4357,-0.5075) mvmt=(0.2243,0.1857,0.3200) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2237,4.4357,-0.5075) mvmt=(0.2243,0.1857,0.3200) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.064,93.512) lpos=(-10.224,4.436,-0.508) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2237,4.4357,-0.5075) mvmt=(0.2243,0.1857,0.3200) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3987,0.2876,1.1177) mvmt=(0.2243,0.1857,0.3200) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3987,0.2876,1.1177) out=(-0.3987,0.2876,1.3165) 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.2237,4.4357,-0.3087) mvmt=(0.2243,0.1857,0.5188) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.064,93.711) lpos=(-10.224,4.436,-0.309) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2237,4.4357,-0.3087) mvmt=(0.2243,0.1857,0.5188) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.2237,4.4357,-0.3087) out=(-10.2237,4.4357,-0.3087) 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.3087 dpMove=-0.4012 iDist=1.9660 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.2237,4.4357,-0.3087) mvmt=(0.2243,0.1857,0.5188) 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.3987,0.2876,1.3165) mvmt=(0.2243,0.1857,0.5188) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5763,0.0476,1.2115) mvmt=(0.2243,0.1857,0.5188) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5763,-2.1636,-0.1385) mvmt=(0.2243,0.1857,0.5188) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4521,-2.6212,2.7158) mvmt=(-0.0828,0.2792,0.5188) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2237,4.4357,-0.2887) mvmt=(0.2243,0.1857,0.5188) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2237,4.4357,-0.3087) mvmt=(0.2243,0.1857,0.5188) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.064,93.711) lpos=(-10.224,4.436,-0.309) lprev=(-10.448,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.064,93.512) lpos=(-10.224,4.436,-0.508) lprev=(-10.448,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2237,4.2500,-0.8275) mvmt=(0.2243,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.250,93.192) lpos=(-10.224,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3987,0.1020,0.7977) mvmt=(0.2243,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2237,4.2500,-0.8275) mvmt=(0.2243,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.250,93.192) lpos=(-10.224,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3987,0.1020,0.7977) mvmt=(0.2243,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3987,0.1020,0.7977) out=(-0.3987,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2237,4.2500,-0.4944) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.250,93.526) lpos=(-10.224,4.250,-0.494) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2237,4.2500,-0.4944) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.2237,4.2500,-0.4944) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3987,0.1020,1.1308) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5763,-0.1380,1.0258) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5763,-2.3493,-0.3242) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.6229,-2.6941,2.5301) mvmt=(0.0880,0.2063,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2237,4.2500,-0.4744) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2237,4.2500,-0.4944) mvmt=(0.2243,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.724,7.250,93.526) lpos=(-10.224,4.250,-0.494) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4480,4.4201,-0.5232) mvmt=(0.0000,0.1700,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4201,-0.5232) mvmt=(0.0000,0.1700,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.080,93.497) lpos=(-10.448,4.420,-0.523) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4201,-0.5232) mvmt=(0.0000,0.1700,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.2720,1.1020) mvmt=(0.0000,0.1700,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0320,0.9970) mvmt=(0.0000,0.1700,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1792,-0.3530) mvmt=(0.0000,0.1700,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3785,-2.8337,2.5013) mvmt=(-0.1564,0.0667,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4201,-0.5032) mvmt=(0.0000,0.1700,0.3044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.080,93.497) lpos=(-10.448,4.420,-0.523) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2174,4.4409,-0.5023) mvmt=(0.2306,0.1909,0.3252) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2174,4.4409,-0.5023) mvmt=(0.2306,0.1909,0.3252) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.059,93.518) lpos=(-10.217,4.441,-0.502) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2174,4.4409,-0.5023) mvmt=(0.2306,0.1909,0.3252) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3924,0.2929,1.1229) mvmt=(0.2306,0.1909,0.3252) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3924,0.2929,1.1229) out=(-0.3924,0.2929,1.3217) 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.2174,4.4409,-0.3035) mvmt=(0.2306,0.1909,0.5240) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.059,93.716) lpos=(-10.217,4.441,-0.303) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2174,4.4409,-0.3035) mvmt=(0.2306,0.1909,0.5240) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.2174,4.4409,-0.3035) out=(-10.2174,4.4409,-0.3035) 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.3035 dpMove=-0.4012 iDist=1.9530 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.2174,4.4409,-0.3035) mvmt=(0.2306,0.1909,0.5240) 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.3924,0.2929,1.3217) mvmt=(0.2306,0.1909,0.5240) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5826,0.0529,1.2167) mvmt=(0.2306,0.1909,0.5240) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5826,-2.1584,-0.1333) mvmt=(0.2306,0.1909,0.5240) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4498,-2.6134,2.7210) mvmt=(-0.0851,0.2870,0.5240) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2174,4.4409,-0.2835) mvmt=(0.2306,0.1909,0.5240) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2174,4.4409,-0.3035) mvmt=(0.2306,0.1909,0.5240) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.059,93.716) lpos=(-10.217,4.441,-0.303) lprev=(-10.448,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.059,93.518) lpos=(-10.217,4.441,-0.502) lprev=(-10.448,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2174,4.2500,-0.8275) mvmt=(0.2306,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.250,93.192) lpos=(-10.217,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3924,0.1020,0.7977) mvmt=(0.2306,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2174,4.2500,-0.8275) mvmt=(0.2306,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.250,93.192) lpos=(-10.217,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3924,0.1020,0.7977) mvmt=(0.2306,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3924,0.1020,0.7977) out=(-0.3924,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2174,4.2500,-0.4944) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.250,93.526) lpos=(-10.217,4.250,-0.494) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2174,4.2500,-0.4944) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.2174,4.2500,-0.4944) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3924,0.1020,1.1308) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5826,-0.1380,1.0258) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5826,-2.3493,-0.3242) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.6254,-2.6883,2.5301) mvmt=(0.0905,0.2121,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2174,4.2500,-0.4744) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2174,4.2500,-0.4944) mvmt=(0.2306,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.717,7.250,93.526) lpos=(-10.217,4.250,-0.494) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4480,4.4209,-0.5224) mvmt=(0.0000,0.1708,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4209,-0.5224) mvmt=(0.0000,0.1708,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.079,93.498) lpos=(-10.448,4.421,-0.522) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4209,-0.5224) mvmt=(0.0000,0.1708,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.2728,1.1028) mvmt=(0.0000,0.1708,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0328,0.9978) mvmt=(0.0000,0.1708,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1785,-0.3522) mvmt=(0.0000,0.1708,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3778,-2.8334,2.5021) mvmt=(-0.1571,0.0670,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4209,-0.5024) mvmt=(0.0000,0.1708,0.3051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.079,93.498) lpos=(-10.448,4.421,-0.522) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2516,4.4266,-0.5167) mvmt=(0.1964,0.1765,0.3108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2516,4.4266,-0.5167) mvmt=(0.1964,0.1765,0.3108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.073,93.503) lpos=(-10.252,4.427,-0.517) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2516,4.4266,-0.5167) mvmt=(0.1964,0.1765,0.3108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4266,0.2785,1.1085) mvmt=(0.1964,0.1765,0.3108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4266,0.2785,1.1085) out=(-0.4266,0.2785,1.3073) 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.2516,4.4266,-0.3179) mvmt=(0.1964,0.1765,0.5097) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.073,93.702) lpos=(-10.252,4.427,-0.318) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2516,4.4266,-0.3179) mvmt=(0.1964,0.1765,0.5097) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.2516,4.4266,-0.3179) out=(-10.2516,4.4266,-0.3179) 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.3179 dpMove=-0.4012 iDist=1.9888 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.2516,4.4266,-0.3179) mvmt=(0.1964,0.1765,0.5097) 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.4266,0.2785,1.3073) mvmt=(0.1964,0.1765,0.5097) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5484,0.0385,1.2023) mvmt=(0.1964,0.1765,0.5097) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.5484,-2.1728,-0.1477) mvmt=(0.1964,0.1765,0.5097) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4496,-2.6505,2.7066) mvmt=(-0.0853,0.2499,0.5097) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2516,4.4266,-0.2979) mvmt=(0.1964,0.1765,0.5097) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2516,4.4266,-0.3179) mvmt=(0.1964,0.1765,0.5097) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.073,93.702) lpos=(-10.252,4.427,-0.318) lprev=(-10.448,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.073,93.503) lpos=(-10.252,4.427,-0.517) lprev=(-10.448,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2516,4.2500,-0.8275) mvmt=(0.1964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.250,93.192) lpos=(-10.252,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4266,0.1020,0.7977) mvmt=(0.1964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.2516,4.2500,-0.8275) mvmt=(0.1964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.250,93.192) lpos=(-10.252,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4266,0.1020,0.7977) mvmt=(0.1964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4266,0.1020,0.7977) out=(-0.4266,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2516,4.2500,-0.4944) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.250,93.526) lpos=(-10.252,4.250,-0.494) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2516,4.2500,-0.4944) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.2516,4.2500,-0.4944) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4266,0.1020,1.1308) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5484,-0.1380,1.0258) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5484,-2.3493,-0.3242) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.6120,-2.7198,2.5301) mvmt=(0.0770,0.1806,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2516,4.2500,-0.4744) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.2516,4.2500,-0.4944) mvmt=(0.1964,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.752,7.250,93.526) lpos=(-10.252,4.250,-0.494) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4480,4.4555,-0.4878) mvmt=(0.0000,0.2055,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4555,-0.4878) mvmt=(0.0000,0.2055,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.045,93.532) lpos=(-10.448,4.455,-0.488) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4555,-0.4878) mvmt=(0.0000,0.2055,0.3398) 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.4480,4.4555,-0.4878) mvmt=(0.0000,0.2055,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.3074,1.1374) mvmt=(0.0000,0.2055,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0674,1.0324) mvmt=(0.0000,0.2055,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1438,-0.3176) mvmt=(0.0000,0.2055,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3459,-2.8198,2.5367) mvmt=(-0.1890,0.0806,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4555,-0.4678) mvmt=(0.0000,0.2055,0.3398) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.045,93.532) lpos=(-10.448,4.455,-0.488) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3035,4.4615,-0.4817) mvmt=(0.1445,0.2115,0.3458) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3035,4.4615,-0.4817) mvmt=(0.1445,0.2115,0.3458) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.038,93.538) lpos=(-10.303,4.462,-0.482) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3035,4.4615,-0.4817) mvmt=(0.1445,0.2115,0.3458) 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.3035,4.4615,-0.4817) mvmt=(0.1445,0.2115,0.3458) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4785,0.3135,1.1435) mvmt=(0.1445,0.2115,0.3458) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4785,0.3135,1.1435) out=(-0.4785,0.3135,1.3423) 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.3035,4.4615,-0.2829) mvmt=(0.1445,0.2115,0.5446) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.038,93.737) lpos=(-10.303,4.462,-0.283) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3035,4.4615,-0.2829) mvmt=(0.1445,0.2115,0.5446) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.3035,4.4615,-0.2829) out=(-10.3035,4.4615,-0.2829) 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.2829 dpMove=-0.4012 iDist=1.9016 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.3035,4.4615,-0.2829) mvmt=(0.1445,0.2115,0.5446) 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.4785,0.3135,1.3423) mvmt=(0.1445,0.2115,0.5446) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4966,0.0735,1.2373) mvmt=(0.1445,0.2115,0.5446) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4966,-2.1378,-0.1127) mvmt=(0.1445,0.2115,0.5446) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.3971,-2.6845,2.7416) mvmt=(-0.1378,0.2159,0.5446) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3035,4.4615,-0.2629) mvmt=(0.1445,0.2115,0.5446) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3035,4.4615,-0.2829) mvmt=(0.1445,0.2115,0.5446) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.038,93.737) lpos=(-10.303,4.462,-0.283) lprev=(-10.448,4.250,-0.828) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.038,93.538) lpos=(-10.303,4.462,-0.482) lprev=(-10.448,4.250,-0.828) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3035,4.2500,-0.8275) mvmt=(0.1445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.250,93.192) lpos=(-10.303,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4785,0.1020,0.7977) mvmt=(0.1445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.3035,4.2500,-0.8275) mvmt=(0.1445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.250,93.192) lpos=(-10.303,4.250,-0.828) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4785,0.1020,0.7977) mvmt=(0.1445,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4785,0.1020,0.7977) out=(-0.4785,0.1020,1.1308) delta=(0.0000,0.0000,0.3331) deltaMag=0.3331 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4448 dpPos=0.2444 dpMove=-0.4243 iDist=0.5552 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3035,4.2500,-0.4944) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.250,93.526) lpos=(-10.303,4.250,-0.494) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3035,4.2500,-0.4944) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 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.3035,4.2500,-0.4944) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4785,0.1020,1.1308) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4966,-0.1380,1.0258) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.4966,-2.3493,-0.3242) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(0.5916,-2.7675,2.5301) mvmt=(0.0567,0.1329,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3035,4.2500,-0.4744) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=0 objState=0x303 winterp=0.4448 return=-1 +[push-back-disp] site=dispatch center=(-10.3035,4.2500,-0.4944) mvmt=(0.1445,0.0000,0.3331) collide=False insertType=1 objState=0x303 winterp=0.4448 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.803,7.250,93.526) lpos=(-10.303,4.250,-0.494) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4480,4.4499,-0.4933) mvmt=(0.0000,0.1999,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4499,-0.4933) mvmt=(0.0000,0.1999,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.050,93.527) lpos=(-10.448,4.450,-0.493) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4480,4.4499,-0.4933) mvmt=(0.0000,0.1999,0.3342) 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.4480,4.4499,-0.4933) mvmt=(0.0000,0.1999,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6230,0.3019,1.1319) mvmt=(0.0000,0.1999,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,0.0619,1.0269) mvmt=(0.0000,0.1999,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3520,-2.1494,-0.3231) mvmt=(0.0000,0.1999,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3511,-2.8220,2.5312) mvmt=(-0.1839,0.0784,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4480,4.4499,-0.4733) mvmt=(0.0000,0.1999,0.3342) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.050,93.527) lpos=(-10.448,4.450,-0.493) lprev=(-10.448,4.250,-0.828) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4747,4.1473,-0.7959) mvmt=(-0.0267,-0.1027,0.0316) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.975,7.353,93.224) lpos=(-10.475,4.147,-0.796) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6497,-0.0007,0.8293) mvmt=(-0.0267,-0.1027,0.0316) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3253,-0.2407,0.7243) mvmt=(-0.0267,-0.1027,0.0316) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3253,-2.4520,-0.6257) mvmt=(-0.0267,-0.1027,0.0316) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4747,4.1473,-0.7759) mvmt=(-0.0267,-0.1027,0.0316) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4747,4.1473,-1.5459) mvmt=(-0.0267,-0.1027,-0.7184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.975,7.353,92.474) lpos=(-10.475,4.147,-1.546) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6497,-0.0007,0.0793) mvmt=(-0.0267,-0.1027,-0.7184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3253,-0.2407,-0.0257) mvmt=(-0.0267,-0.1027,-0.7184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3253,-0.2407,-0.0257) out=(0.3253,-0.2407,0.5864) delta=(0.0000,0.0000,0.6121) deltaMag=0.6121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.1838 dpPos=0.0546 dpMove=-0.5213 iDist=0.8162 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.4747,4.1473,-0.9338) mvmt=(-0.0267,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=0.1838 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.975,7.353,93.086) lpos=(-10.475,4.147,-0.934) lprev=(-10.448,4.250,-0.828) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6497,-0.0007,0.6914) mvmt=(-0.0267,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=0.1838 return=-1 +[push-back-disp] site=dispatch center=(0.3253,-0.2407,0.5864) mvmt=(-0.0267,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=0.1838 return=-1 +[push-back-disp] site=dispatch center=(0.3253,-2.4520,-0.7636) mvmt=(-0.0267,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=0.1838 return=-1 +[push-back-disp] site=dispatch center=(0.6189,-2.9652,2.0907) mvmt=(0.0840,-0.0648,-0.1063) collide=False insertType=0 objState=0x303 winterp=0.1838 return=-1 +[push-back-disp] site=dispatch center=(-10.4747,4.1473,-0.9138) mvmt=(-0.0267,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=0.1838 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5014,4.0479,-1.0366) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.452,92.983) lpos=(-10.501,4.048,-1.037) lprev=(-10.475,4.147,-0.934) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6764,-0.1001,0.5886) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2986,-0.3401,0.4836) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2986,-2.5514,-0.8664) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6999,-3.0288,1.9879) mvmt=(0.0809,-0.0636,-0.1028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5014,4.0479,-1.0166) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5014,4.0479,-1.7866) mvmt=(-0.0267,-0.0994,-0.8528) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.452,92.233) lpos=(-10.501,4.048,-1.787) lprev=(-10.475,4.147,-0.934) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6764,-0.1001,-0.1614) mvmt=(-0.0267,-0.0994,-0.8528) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2986,-0.3401,-0.2664) mvmt=(-0.0267,-0.0994,-0.8528) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2986,-0.3401,-0.2664) out=(0.2986,-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=(-10.5014,4.0479,-1.0366) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.452,92.983) lpos=(-10.501,4.048,-1.037) lprev=(-10.475,4.147,-0.934) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6764,-0.1001,0.5886) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2986,-0.3401,0.4836) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2986,-2.5514,-0.8664) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6999,-3.0288,1.9879) mvmt=(0.0809,-0.0636,-0.1028) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5014,4.0479,-1.0166) mvmt=(-0.0267,-0.0994,-0.1028) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5278,3.9493,-1.1386) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.028,7.551,92.881) lpos=(-10.528,3.949,-1.139) lprev=(-10.501,4.048,-1.037) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7029,-0.1987,0.4866) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2722,-0.4387,0.3816) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2722,-2.6500,-0.9684) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7802,-3.0918,1.8859) mvmt=(0.0803,-0.0630,-0.1020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5278,3.9493,-1.1186) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5278,3.9493,-1.8886) mvmt=(-0.0265,-0.0986,-0.8520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.028,7.551,92.131) lpos=(-10.528,3.949,-1.889) lprev=(-10.501,4.048,-1.037) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7029,-0.1987,-0.2634) mvmt=(-0.0265,-0.0986,-0.8520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2722,-0.4387,-0.3684) mvmt=(-0.0265,-0.0986,-0.8520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2722,-0.4387,-0.3684) out=(0.2722,-0.4387,0.3816) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5278,3.9493,-1.1386) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.028,7.551,92.881) lpos=(-10.528,3.949,-1.139) lprev=(-10.501,4.048,-1.037) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7029,-0.1987,0.4866) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2722,-0.4387,0.3816) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2722,-2.6500,-0.9684) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7802,-3.0918,1.8859) mvmt=(0.0803,-0.0630,-0.1020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5278,3.9493,-1.1186) mvmt=(-0.0265,-0.0986,-0.1020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5550,3.8483,-1.2431) mvmt=(-0.0272,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.652,92.777) lpos=(-10.555,3.848,-1.243) lprev=(-10.528,3.949,-1.139) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7300,-0.2998,0.3820) mvmt=(-0.0272,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2450,-0.5398,0.2771) mvmt=(-0.0272,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2450,-2.7511,-1.0730) mvmt=(-0.0272,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5550,3.8483,-1.2232) mvmt=(-0.0272,-0.1011,-0.1045) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5550,3.8483,-1.9931) mvmt=(-0.0272,-0.1011,-0.8545) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.652,92.027) lpos=(-10.555,3.848,-1.993) lprev=(-10.528,3.949,-1.139) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7300,-0.2998,-0.3680) mvmt=(-0.0272,-0.1011,-0.8545) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2450,-0.5398,-0.4729) mvmt=(-0.0272,-0.1011,-0.8545) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2450,-0.5398,-0.4729) out=(0.2450,-0.5398,0.2770) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5550,3.8483,-1.2432) mvmt=(-0.0272,-0.1011,-0.1046) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.055,7.652,92.777) lpos=(-10.555,3.848,-1.243) lprev=(-10.528,3.949,-1.139) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7300,-0.2998,0.3820) mvmt=(-0.0272,-0.1011,-0.1046) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2450,-0.5398,0.2770) mvmt=(-0.0272,-0.1011,-0.1046) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2450,-2.7511,-1.0730) mvmt=(-0.0272,-0.1011,-0.1046) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5550,3.8483,-1.2232) mvmt=(-0.0272,-0.1011,-0.1046) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5839,3.7406,-1.3545) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.759,92.665) lpos=(-10.584,3.741,-1.355) lprev=(-10.555,3.848,-1.243) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7589,-0.4074,0.2707) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2161,-0.6474,0.1657) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2161,-2.8587,-1.1843) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5839,3.7406,-1.3345) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5839,3.7406,-2.1045) mvmt=(-0.0289,-0.1077,-0.8614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.759,91.915) lpos=(-10.584,3.741,-2.105) lprev=(-10.555,3.848,-1.243) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7589,-0.4074,-0.4793) mvmt=(-0.0289,-0.1077,-0.8614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2161,-0.6474,-0.5843) mvmt=(-0.0289,-0.1077,-0.8614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2161,-0.6474,-0.5843) out=(0.2161,-0.6474,0.1657) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5839,3.7406,-1.3545) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.084,7.759,92.665) lpos=(-10.584,3.741,-1.355) lprev=(-10.555,3.848,-1.243) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7589,-0.4074,0.2707) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2161,-0.6474,0.1657) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2161,-2.8587,-1.1843) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5839,3.7406,-1.3345) mvmt=(-0.0289,-0.1077,-0.1114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6099,3.6439,-1.4546) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.110,7.856,92.565) lpos=(-10.610,3.644,-1.455) lprev=(-10.584,3.741,-1.355) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7849,-0.5041,0.1706) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1901,-0.7441,0.0657) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1901,-2.9554,-1.2844) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6099,3.6439,-1.4346) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6099,3.6439,-2.2046) mvmt=(-0.0260,-0.0967,-0.8500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.110,7.856,91.815) lpos=(-10.610,3.644,-2.205) lprev=(-10.584,3.741,-1.355) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7849,-0.5041,-0.5794) mvmt=(-0.0260,-0.0967,-0.8500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1901,-0.7441,-0.6843) mvmt=(-0.0260,-0.0967,-0.8500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1901,-0.7441,-0.6843) out=(0.1901,-0.7441,0.0657) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6099,3.6439,-1.4546) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.110,7.856,92.565) lpos=(-10.610,3.644,-1.455) lprev=(-10.584,3.741,-1.355) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7849,-0.5041,0.1706) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1901,-0.7441,0.0657) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1901,-2.9554,-1.2844) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6099,3.6439,-1.4346) mvmt=(-0.0260,-0.0967,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6363,3.5456,-1.5563) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.954,92.464) lpos=(-10.636,3.546,-1.556) lprev=(-10.610,3.644,-1.455) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8113,-0.6025,0.0689) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1637,-0.8425,-0.0360) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1637,-3.0537,-1.3861) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6363,3.5456,-1.5363) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6363,3.5456,-2.3063) mvmt=(-0.0264,-0.0983,-0.8517) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.954,91.714) lpos=(-10.636,3.546,-2.306) lprev=(-10.610,3.644,-1.455) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8113,-0.6025,-0.6811) mvmt=(-0.0264,-0.0983,-0.8517) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1637,-0.8425,-0.7860) mvmt=(-0.0264,-0.0983,-0.8517) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1637,-0.8425,-0.7860) out=(0.1637,-0.8425,-0.0360) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6363,3.5456,-1.5563) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.136,7.954,92.464) lpos=(-10.636,3.546,-1.556) lprev=(-10.610,3.644,-1.455) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8113,-0.6025,0.0689) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1637,-0.8425,-0.0360) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1637,-3.0537,-1.3861) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6363,3.5456,-1.5363) mvmt=(-0.0264,-0.0983,-0.1017) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6628,3.4471,-1.6581) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.163,8.053,92.362) lpos=(-10.663,3.447,-1.658) lprev=(-10.636,3.546,-1.556) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8378,-0.7009,-0.0329) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1372,-0.9409,-0.1379) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1372,-3.1522,-1.4879) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6628,3.4471,-1.6381) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6628,3.4471,-2.4081) mvmt=(-0.0265,-0.0984,-0.8518) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.163,8.053,91.612) lpos=(-10.663,3.447,-2.408) lprev=(-10.636,3.546,-1.556) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8378,-0.7009,-0.7829) mvmt=(-0.0265,-0.0984,-0.8518) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1372,-0.9409,-0.8879) mvmt=(-0.0265,-0.0984,-0.8518) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1372,-0.9409,-0.8879) out=(0.1372,-0.9409,-0.1379) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6628,3.4471,-1.6581) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.163,8.053,92.362) lpos=(-10.663,3.447,-1.658) lprev=(-10.636,3.546,-1.556) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8378,-0.7009,-0.0329) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1372,-0.9409,-0.1379) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1372,-3.1522,-1.4879) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6628,3.4471,-1.6381) mvmt=(-0.0265,-0.0984,-0.1018) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6974,3.3184,-1.7913) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.197,8.182,92.229) lpos=(-10.697,3.318,-1.791) lprev=(-10.663,3.447,-1.658) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8724,-0.8296,-0.1661) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1026,-1.0696,-0.2711) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1026,-3.2809,-1.6211) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6974,3.3184,-1.7713) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6974,3.3184,-2.5413) mvmt=(-0.0346,-0.1287,-0.8832) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.197,8.182,91.479) lpos=(-10.697,3.318,-2.541) lprev=(-10.663,3.447,-1.658) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8724,-0.8296,-0.9161) mvmt=(-0.0346,-0.1287,-0.8832) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1026,-1.0696,-1.0211) mvmt=(-0.0346,-0.1287,-0.8832) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1026,-1.0696,-1.0211) out=(0.1026,-1.0696,-0.2711) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6974,3.3184,-1.7913) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.197,8.182,92.229) lpos=(-10.697,3.318,-1.791) lprev=(-10.663,3.447,-1.658) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8724,-0.8296,-0.1661) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1026,-1.0696,-0.2711) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1026,-3.2809,-1.6211) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6974,3.3184,-1.7713) mvmt=(-0.0346,-0.1287,-0.1332) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7238,3.2201,-1.8930) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.224,8.280,92.127) lpos=(-10.724,3.220,-1.893) lprev=(-10.697,3.318,-1.791) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8988,-0.9280,-0.2678) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0762,-1.1680,-0.3728) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0762,-3.3792,-1.7228) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7238,3.2201,-1.8730) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7238,3.2201,-2.6430) mvmt=(-0.0264,-0.0984,-0.8517) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7238,3.2201,-2.6430) out=(-10.7238,3.2201,-2.5700) delta=(0.0000,0.0000,0.0730) deltaMag=0.0730 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9027 dpPos=0.4070 dpMove=-0.7500 iDist=0.0973 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.224,8.280,91.377) lpos=(-10.724,3.220,-2.643) lprev=(-10.697,3.318,-1.791) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7238,3.2201,-2.5700) mvmt=(-0.0264,-0.0984,-0.7787) collide=False insertType=0 objState=0x303 winterp=0.9027 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.224,8.280,91.450) lpos=(-10.724,3.220,-2.570) lprev=(-10.697,3.318,-1.791) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8988,-0.9280,-0.9448) mvmt=(-0.0264,-0.0984,-0.7787) collide=False insertType=0 objState=0x303 winterp=0.9027 return=-1 +[push-back-disp] site=dispatch center=(0.0762,-1.1680,-1.0498) mvmt=(-0.0264,-0.0984,-0.7787) collide=False insertType=0 objState=0x303 winterp=0.9027 return=-1 +[push-back] site=adjust_sphere in=(0.0762,-1.1680,-1.0498) out=(0.0762,-1.1680,-0.3728) delta=(0.0000,0.0000,0.6770) deltaMag=0.6770 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9027->0.0000 dpPos=0.0095 dpMove=-0.4705 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.7238,3.2201,-1.8930) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.224,8.280,92.127) lpos=(-10.724,3.220,-1.893) lprev=(-10.697,3.318,-1.791) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8988,-0.9280,-0.2678) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0762,-1.1680,-0.3728) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0762,-3.3792,-1.7228) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7238,3.2201,-1.8730) mvmt=(-0.0264,-0.0984,-0.1017) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7503,3.1216,-1.9949) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.250,8.378,92.025) lpos=(-10.750,3.122,-1.995) lprev=(-10.724,3.220,-1.893) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9253,-1.0265,-0.3697) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0497,-1.2665,-0.4747) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0497,-3.4777,-1.8247) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7503,3.1216,-1.9749) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7503,3.1216,-2.7449) mvmt=(-0.0265,-0.0985,-0.8519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7503,3.1216,-2.7449) out=(-10.7503,3.1216,-2.5700) delta=(0.0000,0.0000,0.1749) deltaMag=0.1749 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7668 dpPos=0.3051 dpMove=-0.7500 iDist=0.2332 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.250,8.378,91.275) lpos=(-10.750,3.122,-2.745) lprev=(-10.724,3.220,-1.893) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7503,3.1216,-2.5700) mvmt=(-0.0265,-0.0985,-0.6770) collide=False insertType=0 objState=0x303 winterp=0.7668 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.250,8.378,91.450) lpos=(-10.750,3.122,-2.570) lprev=(-10.724,3.220,-1.893) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9253,-1.0265,-0.9448) mvmt=(-0.0265,-0.0985,-0.6770) collide=False insertType=0 objState=0x303 winterp=0.7668 return=-1 +[push-back-disp] site=dispatch center=(0.0497,-1.2665,-1.0498) mvmt=(-0.0265,-0.0985,-0.6770) collide=False insertType=0 objState=0x303 winterp=0.7668 return=-1 +[push-back] site=adjust_sphere in=(0.0497,-1.2665,-1.0498) out=(0.0497,-1.2665,-0.4747) delta=(0.0000,0.0000,0.5751) deltaMag=0.5751 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.7668->0.0000 dpPos=0.0803 dpMove=-0.3997 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.7503,3.1216,-1.9949) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.250,8.378,92.025) lpos=(-10.750,3.122,-1.995) lprev=(-10.724,3.220,-1.893) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9253,-1.0265,-0.3697) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0497,-1.2665,-0.4747) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0497,-3.4777,-1.8247) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7503,3.1216,-1.9749) mvmt=(-0.0265,-0.0985,-0.1019) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7790,3.0148,-2.1054) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,8.485,91.915) lpos=(-10.779,3.015,-2.105) lprev=(-10.750,3.122,-1.995) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,-1.1333,-0.4802) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-1.3733,-0.5852) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-3.5845,-1.9352) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,3.0148,-2.0854) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,3.0148,-2.8554) mvmt=(-0.0287,-0.1068,-0.8605) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7790,3.0148,-2.8554) out=(-10.7790,3.0148,-2.5700) delta=(0.0000,0.0000,0.2854) deltaMag=0.2854 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6195 dpPos=0.1946 dpMove=-0.7500 iDist=0.3805 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.279,8.485,91.165) lpos=(-10.779,3.015,-2.855) lprev=(-10.750,3.122,-1.995) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7790,3.0148,-2.5700) mvmt=(-0.0287,-0.1068,-0.5751) collide=False insertType=0 objState=0x303 winterp=0.6195 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,8.485,91.450) lpos=(-10.779,3.015,-2.570) lprev=(-10.750,3.122,-1.995) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,-1.1333,-0.9448) mvmt=(-0.0287,-0.1068,-0.5751) collide=False insertType=0 objState=0x303 winterp=0.6195 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-1.3733,-1.0498) mvmt=(-0.0287,-0.1068,-0.5751) collide=False insertType=0 objState=0x303 winterp=0.6195 return=-1 +[push-back] site=adjust_sphere in=(0.0210,-1.3733,-1.0498) out=(0.0210,-1.3733,-0.5852) delta=(0.0000,0.0000,0.4646) deltaMag=0.4646 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6195->-0.0000 dpPos=0.1571 dpMove=-0.3229 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.7790,3.0148,-2.1054) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,8.485,91.915) lpos=(-10.779,3.015,-2.105) lprev=(-10.750,3.122,-1.995) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,-1.1333,-0.4802) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-1.3733,-0.5852) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-3.5845,-1.9352) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,3.0148,-2.0854) mvmt=(-0.0287,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8052,2.9172,-2.2063) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.305,8.583,91.814) lpos=(-10.805,2.917,-2.206) lprev=(-10.779,3.015,-2.105) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9802,-1.2309,-0.5811) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0052,-1.4709,-0.6861) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0052,-3.6821,-2.0361) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8052,2.9172,-2.1863) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8052,2.9172,-2.9563) mvmt=(-0.0262,-0.0976,-0.8509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8052,2.9172,-2.9563) out=(-10.8052,2.9172,-2.5700) delta=(0.0000,0.0000,0.3863) deltaMag=0.3863 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.4849 dpPos=0.0937 dpMove=-0.7500 iDist=0.5151 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.305,8.583,91.064) lpos=(-10.805,2.917,-2.956) lprev=(-10.779,3.015,-2.105) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8052,2.9172,-2.5700) mvmt=(-0.0262,-0.0976,-0.4646) collide=False insertType=0 objState=0x303 winterp=0.4849 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.305,8.583,91.450) lpos=(-10.805,2.917,-2.570) lprev=(-10.779,3.015,-2.105) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9802,-1.2309,-0.9448) mvmt=(-0.0262,-0.0976,-0.4646) collide=False insertType=0 objState=0x303 winterp=0.4849 return=-1 +[push-back-disp] site=dispatch center=(-0.0052,-1.4709,-1.0498) mvmt=(-0.0262,-0.0976,-0.4646) collide=False insertType=0 objState=0x303 winterp=0.4849 return=-1 +[push-back] site=adjust_sphere in=(-0.0052,-1.4709,-1.0498) out=(-0.0052,-1.4709,-0.6861) delta=(0.0000,0.0000,0.3637) deltaMag=0.3637 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4849->-0.0000 dpPos=0.2272 dpMove=-0.2528 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.8052,2.9172,-2.2063) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.305,8.583,91.814) lpos=(-10.805,2.917,-2.206) lprev=(-10.779,3.015,-2.105) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9802,-1.2309,-0.5811) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0052,-1.4709,-0.6861) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0052,-3.6821,-2.0361) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8052,2.9172,-2.1863) mvmt=(-0.0262,-0.0976,-0.1009) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8335,2.8118,-2.3153) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,8.688,91.705) lpos=(-10.834,2.812,-2.315) lprev=(-10.805,2.917,-2.206) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0085,-1.3362,-0.6901) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0335,-1.5762,-0.7951) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8335,2.8118,-2.2953) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8335,2.8118,-3.0653) mvmt=(-0.0283,-0.1054,-0.8590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8335,2.8118,-3.0653) out=(-10.8335,2.8118,-2.5700) delta=(0.0000,0.0000,0.4953) deltaMag=0.4953 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.3395 dpPos=-0.0153 dpMove=-0.7500 iDist=0.6605 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.334,8.688,90.955) lpos=(-10.834,2.812,-3.065) lprev=(-10.805,2.917,-2.206) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8335,2.8118,-2.5700) mvmt=(-0.0283,-0.1054,-0.3637) collide=False insertType=0 objState=0x303 winterp=0.3395 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,8.688,91.450) lpos=(-10.834,2.812,-2.570) lprev=(-10.805,2.917,-2.206) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0085,-1.3362,-0.9448) mvmt=(-0.0283,-0.1054,-0.3637) collide=False insertType=0 objState=0x303 winterp=0.3395 return=-1 +[push-back-disp] site=dispatch center=(-0.0335,-1.5762,-1.0498) mvmt=(-0.0283,-0.1054,-0.3637) collide=False insertType=0 objState=0x303 winterp=0.3395 return=-1 +[push-back] site=adjust_sphere in=(-0.0335,-1.5762,-1.0498) out=(-0.0335,-1.5762,-0.7951) delta=(0.0000,0.0000,0.2547) deltaMag=0.2547 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.3395->0.0000 dpPos=0.3030 dpMove=-0.1770 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.8335,2.8118,-2.3153) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.334,8.688,91.705) lpos=(-10.834,2.812,-2.315) lprev=(-10.805,2.917,-2.206) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0085,-1.3362,-0.6901) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0335,-1.5762,-0.7951) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8335,2.8118,-2.2953) mvmt=(-0.0283,-0.1054,-0.1090) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8597,2.7143,-2.4162) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,8.786,91.604) lpos=(-10.860,2.714,-2.416) lprev=(-10.834,2.812,-2.315) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0347,-1.4338,-0.7910) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0597,-1.6738,-0.8960) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8597,2.7143,-2.3962) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8597,2.7143,-3.1662) mvmt=(-0.0262,-0.0975,-0.8509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8597,2.7143,-3.1662) out=(-10.8597,2.7143,-2.5700) delta=(0.0000,0.0000,0.5962) deltaMag=0.5962 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.2050 dpPos=-0.1162 dpMove=-0.7500 iDist=0.7950 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.360,8.786,90.854) lpos=(-10.860,2.714,-3.166) lprev=(-10.834,2.812,-2.315) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8597,2.7143,-2.5700) mvmt=(-0.0262,-0.0975,-0.2547) collide=False insertType=0 objState=0x303 winterp=0.2050 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,8.786,91.450) lpos=(-10.860,2.714,-2.570) lprev=(-10.834,2.812,-2.315) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0347,-1.4338,-0.9448) mvmt=(-0.0262,-0.0975,-0.2547) collide=False insertType=0 objState=0x303 winterp=0.2050 return=-1 +[push-back-disp] site=dispatch center=(-0.0597,-1.6738,-1.0498) mvmt=(-0.0262,-0.0975,-0.2547) collide=False insertType=0 objState=0x303 winterp=0.2050 return=-1 +[push-back] site=adjust_sphere in=(-0.0597,-1.6738,-1.0498) out=(-0.0597,-1.6738,-0.8960) delta=(0.0000,0.0000,0.1538) deltaMag=0.1538 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2050->0.0000 dpPos=0.3731 dpMove=-0.1069 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.8597,2.7143,-2.4162) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,8.786,91.604) lpos=(-10.860,2.714,-2.416) lprev=(-10.834,2.812,-2.315) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0347,-1.4338,-0.7910) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0597,-1.6738,-0.8960) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8597,2.7143,-2.3962) mvmt=(-0.0262,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8880,2.6090,-2.5251) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,8.891,91.495) lpos=(-10.888,2.609,-2.525) lprev=(-10.860,2.714,-2.416) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0630,-1.5390,-0.8999) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0880,-1.7790,-1.0049) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8880,2.6090,-2.5051) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8880,2.6090,-3.2751) mvmt=(-0.0283,-0.1052,-0.8589) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8880,2.6090,-3.2751) out=(-10.8880,2.6090,-2.5700) delta=(0.0000,0.0000,0.7051) deltaMag=0.7051 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0599 dpPos=-0.2251 dpMove=-0.7500 iDist=0.9401 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.388,8.891,90.745) lpos=(-10.888,2.609,-3.275) lprev=(-10.860,2.714,-2.416) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8880,2.6090,-2.5700) mvmt=(-0.0283,-0.1052,-0.1538) collide=False insertType=0 objState=0x303 winterp=0.0599 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,8.891,91.450) lpos=(-10.888,2.609,-2.570) lprev=(-10.860,2.714,-2.416) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0630,-1.5390,-0.9448) mvmt=(-0.0283,-0.1052,-0.1538) collide=False insertType=0 objState=0x303 winterp=0.0599 return=-1 +[push-back-disp] site=dispatch center=(-0.0880,-1.7790,-1.0498) mvmt=(-0.0283,-0.1052,-0.1538) collide=False insertType=0 objState=0x303 winterp=0.0599 return=-1 +[push-back] site=adjust_sphere in=(-0.0880,-1.7790,-1.0498) out=(-0.0880,-1.7790,-1.0049) delta=(0.0000,0.0000,0.0449) deltaMag=0.0449 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.0599->-0.0000 dpPos=0.4488 dpMove=-0.0312 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.8880,2.6090,-2.5251) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,8.891,91.495) lpos=(-10.888,2.609,-2.525) lprev=(-10.860,2.714,-2.416) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0630,-1.5390,-0.8999) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0880,-1.7790,-1.0049) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8880,2.6090,-2.5051) mvmt=(-0.0283,-0.1052,-0.1089) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9139,2.5126,-2.6249) mvmt=(-0.0259,-0.0965,-0.0998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9139,2.5126,-2.6249) mvmt=(-0.0259,-0.0965,-0.0998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9139,2.5126,-2.6249) out=(-10.9139,2.5126,-2.5700) delta=(0.0000,0.0000,0.0549) deltaMag=0.0549 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9085 dpPos=0.4251 dpMove=-0.6000 iDist=0.0915 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.414,8.987,91.395) lpos=(-10.914,2.513,-2.625) lprev=(-10.888,2.609,-2.525) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9139,2.5126,-2.5700) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=0 objState=0x303 winterp=0.9085 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,8.987,91.450) lpos=(-10.914,2.513,-2.570) lprev=(-10.888,2.609,-2.525) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0889,-1.6355,-0.9448) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=0 objState=0x303 winterp=0.9085 return=-1 +[push-back-disp] site=dispatch center=(-0.1139,-1.8755,-1.0498) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=0 objState=0x303 winterp=0.9085 return=-1 +[push-back-disp] site=dispatch center=(-10.9139,2.5126,-2.5500) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=0 objState=0x303 winterp=0.9085 return=-1 +[push-back-disp] site=dispatch center=(-10.9139,2.5126,-2.5700) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=1 objState=0x303 winterp=0.9085 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,8.987,91.450) lpos=(-10.914,2.513,-2.570) lprev=(-10.888,2.609,-2.525) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0889,-1.6355,-0.9448) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=1 objState=0x303 winterp=0.9085 return=-1 +[push-back-disp] site=dispatch center=(-0.1139,-1.8755,-1.0498) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=1 objState=0x303 winterp=0.9085 return=-1 +[push-back-disp] site=dispatch center=(-10.9139,2.5126,-2.5500) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=1 objState=0x303 winterp=0.9085 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,8.987,91.395) lpos=(-10.914,2.513,-2.625) lprev=(-10.888,2.609,-2.525) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0889,-1.6355,-0.9448) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=0 objState=0x303 winterp=0.9085 return=-1 +[push-back-disp] site=dispatch center=(-0.1139,-1.8755,-1.0498) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=0 objState=0x303 winterp=0.9085 return=-1 +[push-back-disp] site=dispatch center=(-10.9139,2.5126,-2.5500) mvmt=(-0.0259,-0.0965,-0.0449) collide=False insertType=0 objState=0x303 winterp=0.9085 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9426,2.2918,-2.5700) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.443,9.208,91.450) lpos=(-10.943,2.292,-2.570) lprev=(-10.914,2.513,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1176,-1.8563,-0.9448) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1426,-2.0963,-1.0498) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9426,2.2918,-2.5500) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9426,2.2918,-3.3200) mvmt=(-0.0287,-0.2208,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9426,2.2918,-3.3200) out=(-10.9426,2.2918,-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.443,9.208,90.700) lpos=(-10.943,2.292,-3.320) lprev=(-10.914,2.513,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9426,2.2918,-2.5700) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.443,9.208,91.450) lpos=(-10.943,2.292,-2.570) lprev=(-10.914,2.513,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1176,-1.8563,-0.9448) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1426,-2.0963,-1.0498) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9426,2.2918,-2.5500) mvmt=(-0.0287,-0.2208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9686,2.0909,-2.5700) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.469,9.409,91.450) lpos=(-10.969,2.091,-2.570) lprev=(-10.943,2.292,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1436,-2.0571,-0.9448) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1686,-2.2971,-1.0498) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9686,2.0909,-2.5500) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9686,2.0909,-3.3200) mvmt=(-0.0261,-0.2009,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9686,2.0909,-3.3200) out=(-10.9686,2.0909,-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.469,9.409,90.700) lpos=(-10.969,2.091,-3.320) lprev=(-10.943,2.292,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9686,2.0909,-2.5700) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.469,9.409,91.450) lpos=(-10.969,2.091,-2.570) lprev=(-10.943,2.292,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1436,-2.0571,-0.9448) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1686,-2.2971,-1.0498) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9686,2.0909,-2.5500) mvmt=(-0.0261,-0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9954,1.8851,-2.5700) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.495,9.615,91.450) lpos=(-10.995,1.885,-2.570) lprev=(-10.969,2.091,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1704,-2.2630,-0.9448) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1954,-2.5030,-1.0498) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9954,1.8851,-2.5500) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9954,1.8851,-3.3200) mvmt=(-0.0267,-0.2059,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9954,1.8851,-3.3200) out=(-10.9954,1.8851,-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.495,9.615,90.700) lpos=(-10.995,1.885,-3.320) lprev=(-10.969,2.091,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9954,1.8851,-2.5700) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.495,9.615,91.450) lpos=(-10.995,1.885,-2.570) lprev=(-10.969,2.091,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1704,-2.2630,-0.9448) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1954,-2.5030,-1.0498) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9954,1.8851,-2.5500) mvmt=(-0.0267,-0.2059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0220,1.6801,-2.5700) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.522,9.820,91.450) lpos=(-11.022,1.680,-2.570) lprev=(-10.995,1.885,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1970,-2.4680,-0.9448) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2220,-2.7080,-1.0498) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0220,1.6801,-2.5500) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0220,1.6801,-3.3200) mvmt=(-0.0266,-0.2050,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0220,1.6801,-3.3200) out=(-11.0220,1.6801,-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.522,9.820,90.700) lpos=(-11.022,1.680,-3.320) lprev=(-10.995,1.885,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0220,1.6801,-2.5700) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.522,9.820,91.450) lpos=(-11.022,1.680,-2.570) lprev=(-10.995,1.885,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1970,-2.4680,-0.9448) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2220,-2.7080,-1.0498) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0220,1.6801,-2.5500) mvmt=(-0.0266,-0.2050,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0500,1.4639,-2.5700) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.550,10.036,91.450) lpos=(-11.050,1.464,-2.570) lprev=(-11.022,1.680,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2250,-2.6841,-0.9448) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2500,-2.9241,-1.0498) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0500,1.4639,-2.5500) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0500,1.4639,-3.3200) mvmt=(-0.0281,-0.2162,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0500,1.4639,-3.3200) out=(-11.0500,1.4639,-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.550,10.036,90.700) lpos=(-11.050,1.464,-3.320) lprev=(-11.022,1.680,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0500,1.4639,-2.5700) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.550,10.036,91.450) lpos=(-11.050,1.464,-2.570) lprev=(-11.022,1.680,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2250,-2.6841,-0.9448) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2500,-2.9241,-1.0498) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0500,1.4639,-2.5500) mvmt=(-0.0281,-0.2162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0774,1.2528,-2.5700) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,10.247,91.450) lpos=(-11.077,1.253,-2.570) lprev=(-11.050,1.464,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2524,-2.8953,-0.9448) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2774,-3.1353,-1.0498) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0774,1.2528,-2.5500) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0774,1.2528,-3.3200) mvmt=(-0.0274,-0.2111,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0774,1.2528,-3.3200) out=(-11.0774,1.2528,-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,10.247,90.700) lpos=(-11.077,1.253,-3.320) lprev=(-11.050,1.464,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0774,1.2528,-2.5700) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,10.247,91.450) lpos=(-11.077,1.253,-2.570) lprev=(-11.050,1.464,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2524,-2.8953,-0.9448) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2774,-3.1353,-1.0498) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0774,1.2528,-2.5500) mvmt=(-0.0274,-0.2111,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1045,1.0441,-2.5700) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,10.456,91.450) lpos=(-11.105,1.044,-2.570) lprev=(-11.077,1.253,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.1039,-0.9448) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.3439,-1.0498) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,1.0441,-2.5500) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,1.0441,-3.3200) mvmt=(-0.0271,-0.2087,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.1045,1.0441,-3.3200) out=(-11.1045,1.0441,-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.605,10.456,90.700) lpos=(-11.105,1.044,-3.320) lprev=(-11.077,1.253,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.1045,1.0441,-2.5700) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,10.456,91.450) lpos=(-11.105,1.044,-2.570) lprev=(-11.077,1.253,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.1039,-0.9448) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.3439,-1.0498) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,1.0441,-2.5500) mvmt=(-0.0271,-0.2087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1323,0.8301,-2.5700) mvmt=(-0.0278,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1323,0.8301,-2.5700) mvmt=(-0.0278,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,10.670,91.450) lpos=(-11.132,0.830,-2.570) lprev=(-11.105,1.044,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3073,-3.3179,-0.9448) mvmt=(-0.0278,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3323,-3.5579,-1.0498) mvmt=(-0.0278,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1323,0.8301,-2.5500) mvmt=(-0.0278,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,10.670,91.450) lpos=(-11.132,0.830,-2.570) lprev=(-11.105,1.044,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1045,0.8301,-2.5700) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,10.670,91.450) lpos=(-11.105,0.830,-2.570) lprev=(-11.105,1.044,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.3179,-0.9448) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.5579,-1.0498) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.8301,-2.5500) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.8301,-3.3200) mvmt=(0.0000,-0.2140,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.1045,0.8301,-3.3200) out=(-11.1045,0.8301,-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.605,10.670,90.700) lpos=(-11.105,0.830,-3.320) lprev=(-11.105,1.044,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.1045,0.8301,-2.5700) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,10.670,91.450) lpos=(-11.105,0.830,-2.570) lprev=(-11.105,1.044,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.3179,-0.9448) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.5579,-1.0498) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.8301,-2.5500) mvmt=(0.0000,-0.2140,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1045,0.6193,-2.5700) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,10.881,91.450) lpos=(-11.105,0.619,-2.570) lprev=(-11.105,0.830,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.5288,-0.9448) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.7688,-1.0498) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.6193,-2.5500) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.6193,-3.3200) mvmt=(0.0000,-0.2108,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.1045,0.6193,-3.3200) out=(-11.1045,0.6193,-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.605,10.881,90.700) lpos=(-11.105,0.619,-3.320) lprev=(-11.105,0.830,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.1045,0.6193,-2.5700) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,10.881,91.450) lpos=(-11.105,0.619,-2.570) lprev=(-11.105,0.830,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.5288,-0.9448) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.7688,-1.0498) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.6193,-2.5500) mvmt=(0.0000,-0.2108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1325,0.4039,-2.5700) mvmt=(-0.0280,-0.2153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1325,0.4039,-2.5700) mvmt=(-0.0280,-0.2153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,11.096,91.450) lpos=(-11.132,0.404,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3075,-3.7441,-0.9448) mvmt=(-0.0280,-0.2153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3325,-3.9841,-1.0498) mvmt=(-0.0280,-0.2153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1325,0.4039,-2.5500) mvmt=(-0.0280,-0.2153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,11.096,91.450) lpos=(-11.132,0.404,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1325,0.6193,-2.5700) mvmt=(-0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1325,0.6193,-2.5700) mvmt=(-0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,10.881,91.450) lpos=(-11.132,0.619,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3075,-3.5288,-0.9448) mvmt=(-0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3325,-3.7688,-1.0498) mvmt=(-0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1325,0.6193,-2.5500) mvmt=(-0.0280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,10.881,91.450) lpos=(-11.132,0.619,-2.570) lprev=(-11.105,0.619,-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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1045,0.4136,-2.5700) mvmt=(0.0000,-0.2056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.4136,-2.5700) mvmt=(0.0000,-0.2056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,11.086,91.450) lpos=(-11.105,0.414,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.7344,-0.9448) mvmt=(0.0000,-0.2056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.9744,-1.0498) mvmt=(0.0000,-0.2056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.4136,-2.5500) mvmt=(0.0000,-0.2056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,11.086,91.450) lpos=(-11.105,0.414,-2.570) lprev=(-11.105,0.619,-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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1311,0.6193,-2.5700) mvmt=(-0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1311,0.6193,-2.5700) mvmt=(-0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,10.881,91.450) lpos=(-11.131,0.619,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3061,-3.5288,-0.9448) mvmt=(-0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3311,-3.7688,-1.0498) mvmt=(-0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1311,0.6193,-2.5500) mvmt=(-0.0266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,10.881,91.450) lpos=(-11.131,0.619,-2.570) lprev=(-11.105,0.619,-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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1045,0.4125,-2.5700) mvmt=(0.0000,-0.2067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.4125,-2.5700) mvmt=(0.0000,-0.2067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,11.087,91.450) lpos=(-11.105,0.413,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2795,-3.7355,-0.9448) mvmt=(0.0000,-0.2067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3045,-3.9755,-1.0498) mvmt=(0.0000,-0.2067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1045,0.4125,-2.5500) mvmt=(0.0000,-0.2067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.605,11.087,91.450) lpos=(-11.105,0.413,-2.570) lprev=(-11.105,0.619,-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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1310,0.6193,-2.5700) mvmt=(-0.0265,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1310,0.6193,-2.5700) mvmt=(-0.0265,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,10.881,91.450) lpos=(-11.131,0.619,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3060,-3.5288,-0.9448) mvmt=(-0.0265,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3310,-3.7688,-1.0498) mvmt=(-0.0265,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1310,0.6193,-2.5500) mvmt=(-0.0265,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,10.881,91.450) lpos=(-11.131,0.619,-2.570) lprev=(-11.105,0.619,-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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0513,1.0293,-2.5700) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.551,10.471,91.450) lpos=(-11.051,1.029,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2263,-3.1188,-0.9448) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2513,-3.3588,-1.0498) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0513,1.0293,-2.5500) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0513,1.0293,-3.3200) mvmt=(0.0532,0.4100,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0513,1.0293,-3.3200) out=(-11.0513,1.0293,-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.551,10.471,90.700) lpos=(-11.051,1.029,-3.320) lprev=(-11.105,0.619,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0513,1.0293,-2.5700) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.551,10.471,91.450) lpos=(-11.051,1.029,-2.570) lprev=(-11.105,0.619,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2263,-3.1188,-0.9448) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2513,-3.3588,-1.0498) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0513,1.0293,-2.5500) mvmt=(0.0532,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9989,1.4333,-2.5700) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,10.067,91.450) lpos=(-10.999,1.433,-2.570) lprev=(-11.051,1.029,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1739,-2.7148,-0.9448) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-2.9548,-1.0498) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,1.4333,-2.5500) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,1.4333,-3.3200) mvmt=(0.0524,0.4040,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9989,1.4333,-3.3200) out=(-10.9989,1.4333,-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.499,10.067,90.700) lpos=(-10.999,1.433,-3.320) lprev=(-11.051,1.029,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9989,1.4333,-2.5700) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.499,10.067,91.450) lpos=(-10.999,1.433,-2.570) lprev=(-11.051,1.029,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1739,-2.7148,-0.9448) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1989,-2.9548,-1.0498) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9989,1.4333,-2.5500) mvmt=(0.0524,0.4040,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9412,1.8773,-2.5700) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,9.623,91.450) lpos=(-10.941,1.877,-2.570) lprev=(-10.999,1.433,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1162,-2.2707,-0.9448) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1412,-2.5107,-1.0498) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9412,1.8773,-2.5500) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9412,1.8773,-3.3200) mvmt=(0.0576,0.4440,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9412,1.8773,-3.3200) out=(-10.9412,1.8773,-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.441,9.623,90.700) lpos=(-10.941,1.877,-3.320) lprev=(-10.999,1.433,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9412,1.8773,-2.5700) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,9.623,91.450) lpos=(-10.941,1.877,-2.570) lprev=(-10.999,1.433,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1162,-2.2707,-0.9448) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1412,-2.5107,-1.0498) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9412,1.8773,-2.5500) mvmt=(0.0576,0.4440,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8884,2.2844,-2.5700) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,9.216,91.450) lpos=(-10.888,2.284,-2.570) lprev=(-10.941,1.877,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0634,-1.8636,-0.9448) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0884,-2.1036,-1.0498) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8884,2.2844,-2.5500) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8884,2.2844,-3.3200) mvmt=(0.0528,0.4071,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8884,2.2844,-3.3200) out=(-10.8884,2.2844,-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.388,9.216,90.700) lpos=(-10.888,2.284,-3.320) lprev=(-10.941,1.877,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8884,2.2844,-2.5700) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.388,9.216,91.450) lpos=(-10.888,2.284,-2.570) lprev=(-10.941,1.877,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0634,-1.8636,-0.9448) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0884,-2.1036,-1.0498) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8884,2.2844,-2.5500) mvmt=(0.0528,0.4071,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8361,2.6871,-2.5700) mvmt=(0.0523,0.4027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,8.813,91.450) lpos=(-10.836,2.687,-2.570) lprev=(-10.888,2.284,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0111,-1.4609,-0.9448) mvmt=(0.0523,0.4027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-1.7009,-1.0498) mvmt=(0.0523,0.4027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,2.6871,-2.5700) mvmt=(0.0523,0.4027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,8.813,91.450) lpos=(-10.836,2.687,-2.570) lprev=(-10.888,2.284,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0111,-1.4609,-0.9448) mvmt=(0.0523,0.4027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-1.7009,-1.0498) mvmt=(0.0523,0.4027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0361,-1.7009,-1.0498) out=(-0.0361,-1.7009,-0.9241) delta=(0.0000,0.0000,0.1257) deltaMag=0.1257 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.7906 dpPos=0.3927 dpMove=-0.4170 iDist=0.2094 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=(-10.8361,2.6871,-2.4443) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=0 objState=0x303 winterp=0.7906 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,8.813,91.576) lpos=(-10.836,2.687,-2.444) lprev=(-10.888,2.284,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0111,-1.4609,-0.8191) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=0 objState=0x303 winterp=0.7906 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-1.7009,-0.9241) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=0 objState=0x303 winterp=0.7906 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,2.6871,-2.4243) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=0 objState=0x303 winterp=0.7906 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,2.6871,-2.4443) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=1 objState=0x303 winterp=0.7906 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,8.813,91.576) lpos=(-10.836,2.687,-2.444) lprev=(-10.888,2.284,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0111,-1.4609,-0.8191) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=1 objState=0x303 winterp=0.7906 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-1.7009,-0.9241) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=1 objState=0x303 winterp=0.7906 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,2.6871,-2.4243) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=1 objState=0x303 winterp=0.7906 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,2.6871,-2.4243) mvmt=(0.0523,0.4027,0.1257) collide=False insertType=0 objState=0x303 winterp=0.7906 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7822,2.8877,-2.2368) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.282,8.612,91.783) lpos=(-10.782,2.888,-2.237) lprev=(-10.836,2.687,-2.444) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9572,-1.2603,-0.6116) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0178,-1.5003,-0.7166) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7822,2.8877,-2.2168) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7822,2.8877,-2.9868) mvmt=(0.0539,0.2006,-0.5424) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7822,2.8877,-2.9868) out=(-10.7822,2.8877,-2.5700) delta=(0.0000,0.0000,0.4168) deltaMag=0.4168 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.4443 dpPos=0.0632 dpMove=-0.7500 iDist=0.5557 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.282,8.612,91.033) lpos=(-10.782,2.888,-2.987) lprev=(-10.836,2.687,-2.444) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7822,2.8877,-2.5700) mvmt=(0.0539,0.2006,-0.1257) collide=False insertType=0 objState=0x303 winterp=0.4443 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.282,8.612,91.450) lpos=(-10.782,2.888,-2.570) lprev=(-10.836,2.687,-2.444) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9572,-1.2603,-0.9448) mvmt=(0.0539,0.2006,-0.1257) collide=False insertType=0 objState=0x303 winterp=0.4443 return=-1 +[push-back-disp] site=dispatch center=(0.0178,-1.5003,-1.0498) mvmt=(0.0539,0.2006,-0.1257) collide=False insertType=0 objState=0x303 winterp=0.4443 return=-1 +[push-back] site=adjust_sphere in=(0.0178,-1.5003,-1.0498) out=(0.0178,-1.5003,-0.7166) delta=(0.0000,0.0000,0.3332) deltaMag=0.3332 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4443->0.0000 dpPos=0.2484 dpMove=-0.2316 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.7822,2.8877,-2.2368) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.282,8.612,91.783) lpos=(-10.782,2.888,-2.237) lprev=(-10.836,2.687,-2.444) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9572,-1.2603,-0.6116) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0178,-1.5003,-0.7166) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7822,2.8877,-2.2168) mvmt=(0.0539,0.2006,0.2076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7295,3.0839,-2.0338) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,8.416,91.986) lpos=(-10.729,3.084,-2.034) lprev=(-10.782,2.888,-2.237) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9045,-1.0641,-0.4086) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0705,-1.3041,-0.5136) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0705,-3.5154,-1.8636) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7295,3.0839,-2.0138) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7295,3.0839,-2.7838) mvmt=(0.0527,0.1962,-0.5471) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.7295,3.0839,-2.7838) out=(-10.7295,3.0839,-2.5700) delta=(0.0000,0.0000,0.2138) deltaMag=0.2138 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7149 dpPos=0.2662 dpMove=-0.7500 iDist=0.2851 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.229,8.416,91.236) lpos=(-10.729,3.084,-2.784) lprev=(-10.782,2.888,-2.237) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.7295,3.0839,-2.5700) mvmt=(0.0527,0.1962,-0.3332) collide=False insertType=0 objState=0x303 winterp=0.7149 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,8.416,91.450) lpos=(-10.729,3.084,-2.570) lprev=(-10.782,2.888,-2.237) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9045,-1.0641,-0.9448) mvmt=(0.0527,0.1962,-0.3332) collide=False insertType=0 objState=0x303 winterp=0.7149 return=-1 +[push-back-disp] site=dispatch center=(0.0705,-1.3041,-1.0498) mvmt=(0.0527,0.1962,-0.3332) collide=False insertType=0 objState=0x303 winterp=0.7149 return=-1 +[push-back] site=adjust_sphere in=(0.0705,-1.3041,-1.0498) out=(0.0705,-1.3041,-0.5136) delta=(0.0000,0.0000,0.5362) deltaMag=0.5362 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.7149->0.0000 dpPos=0.1074 dpMove=-0.3726 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.7295,3.0839,-2.0338) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.229,8.416,91.986) lpos=(-10.729,3.084,-2.034) lprev=(-10.782,2.888,-2.237) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9045,-1.0641,-0.4086) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0705,-1.3041,-0.5136) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0705,-3.5154,-1.8636) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7295,3.0839,-2.0138) mvmt=(0.0527,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6769,3.2797,-1.8314) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.177,8.220,92.189) lpos=(-10.677,3.280,-1.831) lprev=(-10.729,3.084,-2.034) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8519,-0.8684,-0.2062) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1231,-1.1084,-0.3112) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1231,-3.3196,-1.6612) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6769,3.2797,-1.8114) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6769,3.2797,-2.5814) mvmt=(0.0526,0.1957,-0.5475) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6769,3.2797,-2.5814) out=(-10.6769,3.2797,-2.5700) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9849 dpPos=0.4686 dpMove=-0.7500 iDist=0.0151 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.177,8.220,91.439) lpos=(-10.677,3.280,-2.581) lprev=(-10.729,3.084,-2.034) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6769,3.2797,-2.5700) mvmt=(0.0526,0.1957,-0.5362) collide=False insertType=0 objState=0x303 winterp=0.9849 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.177,8.220,91.450) lpos=(-10.677,3.280,-2.570) lprev=(-10.729,3.084,-2.034) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8519,-0.8684,-0.9448) mvmt=(0.0526,0.1957,-0.5362) collide=False insertType=0 objState=0x303 winterp=0.9849 return=-1 +[push-back-disp] site=dispatch center=(0.1231,-1.1084,-1.0498) mvmt=(0.0526,0.1957,-0.5362) collide=False insertType=0 objState=0x303 winterp=0.9849 return=-1 +[push-back] site=adjust_sphere in=(0.1231,-1.1084,-1.0498) out=(0.1231,-1.1084,-0.3112) delta=(0.0000,0.0000,0.7386) deltaMag=0.7386 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9849->-0.0000 dpPos=-0.0334 dpMove=-0.5134 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.6769,3.2797,-1.8314) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.177,8.220,92.189) lpos=(-10.677,3.280,-1.831) lprev=(-10.729,3.084,-2.034) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8519,-0.8684,-0.2062) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1231,-1.1084,-0.3112) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1231,-3.3196,-1.6612) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6769,3.2797,-1.8114) mvmt=(0.0526,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6202,3.4907,-1.6131) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.120,8.009,92.407) lpos=(-10.620,3.491,-1.613) lprev=(-10.677,3.280,-1.831) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7952,-0.6574,0.0121) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1798,-0.8974,-0.0929) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1798,-3.1086,-1.4429) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6202,3.4907,-1.5931) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6202,3.4907,-2.3631) mvmt=(0.0567,0.2110,-0.5317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.120,8.009,91.657) lpos=(-10.620,3.491,-2.363) lprev=(-10.677,3.280,-1.831) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7952,-0.6574,-0.7379) mvmt=(0.0567,0.2110,-0.5317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1798,-0.8974,-0.8429) mvmt=(0.0567,0.2110,-0.5317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1798,-0.8974,-0.8429) out=(0.1798,-0.8974,-0.0929) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6202,3.4907,-1.6131) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.120,8.009,92.407) lpos=(-10.620,3.491,-1.613) lprev=(-10.677,3.280,-1.831) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7952,-0.6574,0.0121) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1798,-0.8974,-0.0929) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1798,-3.1086,-1.4429) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6202,3.4907,-1.5931) mvmt=(0.0567,0.2110,0.2183) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5795,3.6962,-1.4005) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.804,92.620) lpos=(-10.579,3.696,-1.400) lprev=(-10.620,3.491,-1.613) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7545,-0.4519,0.2247) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2206,-0.6919,0.1197) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2206,-2.9031,-1.2303) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9928,-3.2386,1.6240) mvmt=(-0.1730,0.1181,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5795,3.6962,-1.3805) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5795,3.6962,-2.1505) mvmt=(0.0407,0.2055,-0.5374) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.804,91.870) lpos=(-10.579,3.696,-2.150) lprev=(-10.620,3.491,-1.613) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7545,-0.4519,-0.5253) mvmt=(0.0407,0.2055,-0.5374) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2206,-0.6919,-0.6303) mvmt=(0.0407,0.2055,-0.5374) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2206,-0.6919,-0.6303) out=(0.2206,-0.6919,0.1197) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5795,3.6962,-1.4005) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.079,7.804,92.620) lpos=(-10.579,3.696,-1.400) lprev=(-10.620,3.491,-1.613) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7545,-0.4519,0.2247) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2206,-0.6919,0.1197) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2206,-2.9031,-1.2303) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9928,-3.2386,1.6240) mvmt=(-0.1730,0.1181,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5795,3.6962,-1.3805) mvmt=(0.0407,0.2055,0.2126) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5761,3.9096,-1.1797) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,7.590,92.840) lpos=(-10.576,3.910,-1.180) lprev=(-10.579,3.696,-1.400) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7511,-0.2384,0.4455) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2239,-0.4784,0.3405) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2239,-2.6897,-1.0095) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7978,-3.1518,1.8448) mvmt=(-0.1950,0.0868,0.2208) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5761,3.9096,-1.1597) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5761,3.9096,-1.9297) mvmt=(0.0034,0.2135,-0.5292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,7.590,92.090) lpos=(-10.576,3.910,-1.930) lprev=(-10.579,3.696,-1.400) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7511,-0.2384,-0.3045) mvmt=(0.0034,0.2135,-0.5292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2239,-0.4784,-0.4095) mvmt=(0.0034,0.2135,-0.5292) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2239,-0.4784,-0.4095) out=(0.2239,-0.4784,0.3405) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5761,3.9096,-1.1797) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,7.590,92.840) lpos=(-10.576,3.910,-1.180) lprev=(-10.579,3.696,-1.400) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7511,-0.2384,0.4455) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2239,-0.4784,0.3405) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2239,-2.6897,-1.0095) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7978,-3.1518,1.8448) mvmt=(-0.1950,0.0868,0.2208) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5761,3.9096,-1.1597) mvmt=(0.0034,0.2135,0.2208) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6080,4.1121,-0.9702) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.388,93.050) lpos=(-10.608,4.112,-0.970) lprev=(-10.576,3.910,-1.180) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7830,-0.0359,0.6550) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1920,-0.2759,0.5500) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1920,-2.4872,-0.8000) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5990,-3.1017,2.0543) mvmt=(-0.1988,0.0501,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6080,4.1121,-0.9502) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6080,4.1121,-1.7202) mvmt=(-0.0319,0.2025,-0.5405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.388,92.300) lpos=(-10.608,4.112,-1.720) lprev=(-10.576,3.910,-1.180) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7830,-0.0359,-0.0950) mvmt=(-0.0319,0.2025,-0.5405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1920,-0.2759,-0.2000) mvmt=(-0.0319,0.2025,-0.5405) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1920,-0.2759,-0.2000) out=(0.1920,-0.2759,0.5500) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6080,4.1121,-0.9702) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.388,93.050) lpos=(-10.608,4.112,-0.970) lprev=(-10.576,3.910,-1.180) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7830,-0.0359,0.6550) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1920,-0.2759,0.5500) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1920,-2.4872,-0.8000) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5990,-3.1017,2.0543) mvmt=(-0.1988,0.0501,0.2095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6080,4.1121,-0.9502) mvmt=(-0.0319,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6620,4.3154,-0.7598) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.162,7.185,93.260) lpos=(-10.662,4.315,-0.760) lprev=(-10.608,4.112,-0.970) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8370,0.1674,0.8653) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1380,-0.0726,0.7604) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1380,-2.2839,-0.5897) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3908,-3.0716,2.2646) mvmt=(-0.2082,0.0302,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6620,4.3154,-0.7399) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6620,4.3154,-1.5098) mvmt=(-0.0539,0.2033,-0.5397) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.162,7.185,92.510) lpos=(-10.662,4.315,-1.510) lprev=(-10.608,4.112,-0.970) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8370,0.1674,0.1153) mvmt=(-0.0539,0.2033,-0.5397) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1380,-0.0726,0.0104) mvmt=(-0.0539,0.2033,-0.5397) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1380,-0.0726,0.0104) out=(0.1380,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6620,4.3154,-0.7598) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.162,7.185,93.260) lpos=(-10.662,4.315,-0.760) lprev=(-10.608,4.112,-0.970) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8370,0.1674,0.8653) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1380,-0.0726,0.7604) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1380,-2.2839,-0.5897) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3908,-3.0716,2.2646) mvmt=(-0.2082,0.0302,0.2103) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6620,4.3154,-0.7399) mvmt=(-0.0539,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7140,4.5116,-0.5569) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,6.988,93.463) lpos=(-10.714,4.512,-0.557) lprev=(-10.662,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7140,4.5116,-0.5569) mvmt=(-0.0520,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=(-0.8890,0.3636,1.0683) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,0.1236,0.9633) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-2.0877,-0.3867) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1899,-3.0425,2.4676) mvmt=(-0.2009,0.0291,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7140,4.5116,-0.5369) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7140,4.5116,-0.5569) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,6.988,93.463) lpos=(-10.714,4.512,-0.557) lprev=(-10.662,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7140,4.5116,-0.5569) mvmt=(-0.0520,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=(-0.8890,0.3636,1.0683) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,0.1236,0.9633) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-2.0877,-0.3867) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1899,-3.0425,2.4676) mvmt=(-0.2009,0.0291,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7140,4.5116,-0.5369) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7140,4.3154,-0.7599) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.185,93.260) lpos=(-10.714,4.315,-0.760) lprev=(-10.662,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8890,0.1674,0.8653) mvmt=(-0.0520,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-0.0726,0.7603) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-2.2839,-0.5897) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7140,4.3154,-0.7399) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7140,4.3154,-1.5099) mvmt=(-0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.185,92.510) lpos=(-10.714,4.315,-1.510) lprev=(-10.662,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8890,0.1674,0.1153) mvmt=(-0.0520,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-0.0726,0.0103) mvmt=(-0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0860,-0.0726,0.0103) out=(0.0860,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7140,4.3154,-0.7599) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.185,93.260) lpos=(-10.714,4.315,-0.760) lprev=(-10.662,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8890,0.1674,0.8653) mvmt=(-0.0520,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-0.0726,0.7603) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-2.2839,-0.5897) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7140,4.3154,-0.7399) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7661,4.5118,-0.5567) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,6.988,93.463) lpos=(-10.766,4.512,-0.557) lprev=(-10.714,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7661,4.5118,-0.5567) mvmt=(-0.0521,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.9411,0.3637,1.0685) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0339,0.1237,0.9635) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0339,-2.0875,-0.3865) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7661,4.5118,-0.5367) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7661,4.5118,-0.5567) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,6.988,93.463) lpos=(-10.766,4.512,-0.557) lprev=(-10.714,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7661,4.5118,-0.5567) mvmt=(-0.0521,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.9411,0.3637,1.0685) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0339,0.1237,0.9635) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0339,-2.0875,-0.3865) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7661,4.5118,-0.5367) mvmt=(-0.0521,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7661,4.3154,-0.7599) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.185,93.260) lpos=(-10.766,4.315,-0.760) lprev=(-10.714,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9411,0.1674,0.8653) 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.0339,-0.0726,0.7603) 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.0339,-2.2839,-0.5897) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7661,4.3154,-0.7399) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7661,4.3154,-1.5099) mvmt=(-0.0521,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.185,92.510) lpos=(-10.766,4.315,-1.510) lprev=(-10.714,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9411,0.1674,0.1153) 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.0339,-0.0726,0.0103) 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.0339,-0.0726,0.0103) out=(0.0339,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7661,4.3154,-0.7599) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.266,7.185,93.260) lpos=(-10.766,4.315,-0.760) lprev=(-10.714,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9411,0.1674,0.8653) 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.0339,-0.0726,0.7603) 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.0339,-2.2839,-0.5897) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7661,4.3154,-0.7399) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8177,4.5099,-0.5587) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.318,6.990,93.461) lpos=(-10.818,4.510,-0.559) lprev=(-10.766,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8177,4.5099,-0.5587) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9927,0.3619,1.0665) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,0.1219,0.9615) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,-2.0894,-0.3885) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8177,4.5099,-0.5387) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8177,4.5099,-0.5587) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.318,6.990,93.461) lpos=(-10.818,4.510,-0.559) lprev=(-10.766,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8177,4.5099,-0.5587) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9927,0.3619,1.0665) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,0.1219,0.9615) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,-2.0894,-0.3885) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8177,4.5099,-0.5387) mvmt=(-0.0516,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8177,4.3154,-0.7599) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.318,7.185,93.260) lpos=(-10.818,4.315,-0.760) lprev=(-10.766,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9927,0.1674,0.8653) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,-0.0726,0.7603) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,-2.2839,-0.5897) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8177,4.3154,-0.7399) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8177,4.3154,-1.5099) mvmt=(-0.0516,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.318,7.185,92.510) lpos=(-10.818,4.315,-1.510) lprev=(-10.766,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9927,0.1674,0.1153) mvmt=(-0.0516,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,-0.0726,0.0103) mvmt=(-0.0516,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0177,-0.0726,0.0103) out=(-0.0177,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8177,4.3154,-0.7599) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.318,7.185,93.260) lpos=(-10.818,4.315,-0.760) lprev=(-10.766,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9927,0.1674,0.8653) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,-0.0726,0.7603) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0177,-2.2839,-0.5897) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8177,4.3154,-0.7399) mvmt=(-0.0516,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8713,4.5175,-0.5509) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.371,6.983,93.469) lpos=(-10.871,4.517,-0.551) lprev=(-10.818,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8713,4.5175,-0.5509) mvmt=(-0.0536,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=(-1.0463,0.3694,1.0743) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,0.1294,0.9693) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,-2.0819,-0.3807) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8713,4.5175,-0.5309) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8713,4.5175,-0.5509) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.371,6.983,93.469) lpos=(-10.871,4.517,-0.551) lprev=(-10.818,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8713,4.5175,-0.5509) mvmt=(-0.0536,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=(-1.0463,0.3694,1.0743) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,0.1294,0.9693) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,-2.0819,-0.3807) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8713,4.5175,-0.5309) mvmt=(-0.0536,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8713,4.3154,-0.7599) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.371,7.185,93.260) lpos=(-10.871,4.315,-0.760) lprev=(-10.818,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0463,0.1674,0.8653) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,-0.0726,0.7603) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,-2.2839,-0.5897) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8713,4.3154,-0.7399) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8713,4.3154,-1.5099) mvmt=(-0.0536,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.371,7.185,92.510) lpos=(-10.871,4.315,-1.510) lprev=(-10.818,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0463,0.1674,0.1153) mvmt=(-0.0536,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,-0.0726,0.0103) mvmt=(-0.0536,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0713,-0.0726,0.0103) out=(-0.0713,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8713,4.3154,-0.7599) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.371,7.185,93.260) lpos=(-10.871,4.315,-0.760) lprev=(-10.818,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0463,0.1674,0.8653) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,-0.0726,0.7603) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0713,-2.2839,-0.5897) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8713,4.3154,-0.7399) mvmt=(-0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9244,4.5156,-0.5528) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,6.984,93.467) lpos=(-10.924,4.516,-0.553) lprev=(-10.871,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9244,4.5156,-0.5528) mvmt=(-0.0531,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.0994,0.3676,1.0724) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1244,0.1276,0.9674) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1244,-2.0837,-0.3826) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9244,4.5156,-0.5328) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9244,4.5156,-0.5528) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,6.984,93.467) lpos=(-10.924,4.516,-0.553) lprev=(-10.871,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9244,4.5156,-0.5528) mvmt=(-0.0531,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.0994,0.3676,1.0724) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1244,0.1276,0.9674) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1244,-2.0837,-0.3826) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9244,4.5156,-0.5328) mvmt=(-0.0531,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9244,4.3154,-0.7599) mvmt=(-0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.185,93.260) lpos=(-10.924,4.315,-0.760) lprev=(-10.871,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0994,0.1674,0.8653) 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.1244,-0.0726,0.7603) 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.1244,-2.2839,-0.5897) 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.9244,4.3154,-0.7399) 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.9244,4.3154,-1.5099) mvmt=(-0.0531,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.185,92.510) lpos=(-10.924,4.315,-1.510) lprev=(-10.871,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0994,0.1674,0.1153) 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.1244,-0.0726,0.0103) 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.1244,-0.0726,0.0103) out=(-0.1244,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9244,4.3154,-0.7599) mvmt=(-0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.185,93.260) lpos=(-10.924,4.315,-0.760) lprev=(-10.871,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0994,0.1674,0.8653) 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.1244,-0.0726,0.7603) 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.1244,-2.2839,-0.5897) 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.9244,4.3154,-0.7399) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9765,4.5118,-0.5567) mvmt=(-0.0521,0.1964,0.2031) 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.924,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9765,4.5118,-0.5567) mvmt=(-0.0521,0.1964,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=(-1.1515,0.3638,1.0685) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1765,0.1238,0.9635) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1765,-2.0875,-0.3865) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9765,4.5118,-0.5367) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9765,4.5118,-0.5567) mvmt=(-0.0521,0.1964,0.2031) 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.924,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9765,4.5118,-0.5567) mvmt=(-0.0521,0.1964,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=(-1.1515,0.3638,1.0685) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1765,0.1238,0.9635) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1765,-2.0875,-0.3865) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9765,4.5118,-0.5367) mvmt=(-0.0521,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9765,4.3154,-0.7599) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.185,93.260) lpos=(-10.977,4.315,-0.760) lprev=(-10.924,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1515,0.1674,0.8653) 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.1765,-0.0726,0.7603) 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.1765,-2.2839,-0.5897) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9765,4.3154,-0.7399) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9765,4.3154,-1.5099) mvmt=(-0.0521,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.185,92.510) lpos=(-10.977,4.315,-1.510) lprev=(-10.924,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1515,0.1674,0.1153) 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.1765,-0.0726,0.0103) 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.1765,-0.0726,0.0103) out=(-0.1765,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9765,4.3154,-0.7599) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.185,93.260) lpos=(-10.977,4.315,-0.760) lprev=(-10.924,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1515,0.1674,0.8653) 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.1765,-0.0726,0.7603) 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.1765,-2.2839,-0.5897) mvmt=(-0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9765,4.3154,-0.7399) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0295,4.5153,-0.5532) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,6.985,93.467) lpos=(-11.030,4.515,-0.553) lprev=(-10.977,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0295,4.5153,-0.5532) mvmt=(-0.0530,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.2045,0.3672,1.0720) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,0.1272,0.9670) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,-2.0840,-0.3830) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0295,4.5153,-0.5332) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0295,4.5153,-0.5532) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,6.985,93.467) lpos=(-11.030,4.515,-0.553) lprev=(-10.977,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0295,4.5153,-0.5532) mvmt=(-0.0530,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.2045,0.3672,1.0720) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,0.1272,0.9670) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,-2.0840,-0.3830) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0295,4.5153,-0.5332) mvmt=(-0.0530,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0295,4.3154,-0.7599) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,7.185,93.260) lpos=(-11.030,4.315,-0.760) lprev=(-10.977,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2045,0.1674,0.8653) mvmt=(-0.0530,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,-0.0726,0.7603) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,-2.2839,-0.5897) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0295,4.3154,-0.7399) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0295,4.3154,-1.5099) mvmt=(-0.0530,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,7.185,92.510) lpos=(-11.030,4.315,-1.510) lprev=(-10.977,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2045,0.1674,0.1153) mvmt=(-0.0530,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,-0.0726,0.0103) mvmt=(-0.0530,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2295,-0.0726,0.0103) out=(-0.2295,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0295,4.3154,-0.7599) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,7.185,93.260) lpos=(-11.030,4.315,-0.760) lprev=(-10.977,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2045,0.1674,0.8653) mvmt=(-0.0530,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,-0.0726,0.7603) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2295,-2.2839,-0.5897) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0295,4.3154,-0.7399) mvmt=(-0.0530,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0829,4.5166,-0.5518) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.983,93.468) lpos=(-11.083,4.517,-0.552) lprev=(-11.030,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5166,-0.5518) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2579,0.3685,1.0734) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1285,0.9684) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0827,-0.3816) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5166,-0.5318) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5166,-0.5518) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.983,93.468) lpos=(-11.083,4.517,-0.552) lprev=(-11.030,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5166,-0.5518) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2579,0.3685,1.0734) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1285,0.9684) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0827,-0.3816) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5166,-0.5318) mvmt=(-0.0534,0.2011,0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.3154,-0.7599) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,7.185,93.260) lpos=(-11.083,4.315,-0.760) lprev=(-11.030,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2579,0.1674,0.8653) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-0.0726,0.7603) mvmt=(-0.0534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.2839,-0.5897) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.3154,-0.7399) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.3154,-1.5099) mvmt=(-0.0534,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,7.185,92.510) lpos=(-11.083,4.315,-1.510) lprev=(-11.030,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2579,0.1674,0.1153) mvmt=(-0.0534,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-0.0726,0.0103) mvmt=(-0.0534,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2829,-0.0726,0.0103) out=(-0.2829,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0829,4.3154,-0.7599) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,7.185,93.260) lpos=(-11.083,4.315,-0.760) lprev=(-11.030,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2579,0.1674,0.8653) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-0.0726,0.7603) mvmt=(-0.0534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.2839,-0.5897) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.3154,-0.7399) mvmt=(-0.0534,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1349,4.5116,-0.5569) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1349,4.5116,-0.5569) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,6.988,93.463) lpos=(-11.135,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1349,4.5116,-0.5569) mvmt=(-0.0520,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.3099,0.3636,1.0683) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3349,0.1236,0.9633) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3349,-2.0877,-0.3867) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1349,4.5116,-0.5369) mvmt=(-0.0520,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,6.988,93.463) lpos=(-11.135,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5116,-0.5569) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.988,93.463) lpos=(-11.083,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5116,-0.5569) mvmt=(0.0000,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.2579,0.3636,1.0683) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1236,0.9633) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0877,-0.3867) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5116,-0.5369) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5116,-0.5569) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.988,93.463) lpos=(-11.083,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5116,-0.5569) mvmt=(0.0000,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.2579,0.3636,1.0683) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1236,0.9633) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0877,-0.3867) mvmt=(0.0000,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5116,-0.5369) mvmt=(0.0000,0.1962,0.2029) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1344,4.5096,-0.5590) mvmt=(-0.0515,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1344,4.5096,-0.5590) mvmt=(-0.0515,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,6.990,93.461) lpos=(-11.134,4.510,-0.559) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1344,4.5096,-0.5590) mvmt=(-0.0515,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.3094,0.3615,1.0662) mvmt=(-0.0515,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3344,0.1215,0.9612) mvmt=(-0.0515,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3344,-2.0897,-0.3888) mvmt=(-0.0515,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1344,4.5096,-0.5390) mvmt=(-0.0515,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,6.990,93.461) lpos=(-11.134,4.510,-0.559) lprev=(-11.083,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5096,-0.5590) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.990,93.461) lpos=(-11.083,4.510,-0.559) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5096,-0.5590) mvmt=(0.0000,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.2579,0.3615,1.0662) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1215,0.9612) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0897,-0.3888) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5096,-0.5390) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5096,-0.5590) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.990,93.461) lpos=(-11.083,4.510,-0.559) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5096,-0.5590) mvmt=(0.0000,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.2579,0.3615,1.0662) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1215,0.9612) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0897,-0.3888) mvmt=(0.0000,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5096,-0.5390) mvmt=(0.0000,0.1941,0.2008) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1340,4.5083,-0.5604) mvmt=(-0.0511,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1340,4.5083,-0.5604) mvmt=(-0.0511,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,6.992,93.460) lpos=(-11.134,4.508,-0.560) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1340,4.5083,-0.5604) mvmt=(-0.0511,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.3090,0.3602,1.0648) mvmt=(-0.0511,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3340,0.1202,0.9598) mvmt=(-0.0511,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3340,-2.0910,-0.3902) mvmt=(-0.0511,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1340,4.5083,-0.5404) mvmt=(-0.0511,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,6.992,93.460) lpos=(-11.134,4.508,-0.560) lprev=(-11.083,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5083,-0.5604) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.992,93.460) lpos=(-11.083,4.508,-0.560) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5083,-0.5604) mvmt=(0.0000,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.2579,0.3602,1.0648) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1202,0.9598) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0910,-0.3902) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5083,-0.5404) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5083,-0.5604) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.992,93.460) lpos=(-11.083,4.508,-0.560) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5083,-0.5604) mvmt=(0.0000,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.2579,0.3602,1.0648) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1202,0.9598) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0910,-0.3902) mvmt=(0.0000,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5083,-0.5404) mvmt=(0.0000,0.1928,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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1372,4.5203,-0.5479) mvmt=(-0.0544,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1372,4.5203,-0.5479) mvmt=(-0.0544,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.637,6.980,93.472) lpos=(-11.137,4.520,-0.548) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1372,4.5203,-0.5479) mvmt=(-0.0544,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3122,0.3723,1.0773) mvmt=(-0.0544,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3372,0.1323,0.9723) mvmt=(-0.0544,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3372,-2.0790,-0.3777) mvmt=(-0.0544,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1372,4.5203,-0.5279) mvmt=(-0.0544,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.637,6.980,93.472) lpos=(-11.137,4.520,-0.548) lprev=(-11.083,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5203,-0.5479) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.980,93.472) lpos=(-11.083,4.520,-0.548) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5203,-0.5479) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2579,0.3723,1.0773) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1323,0.9723) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0790,-0.3777) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5203,-0.5279) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5203,-0.5479) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.980,93.472) lpos=(-11.083,4.520,-0.548) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5203,-0.5479) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2579,0.3723,1.0773) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1323,0.9723) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0790,-0.3777) mvmt=(0.0000,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5203,-0.5279) mvmt=(0.0000,0.2049,0.2120) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1366,4.5178,-0.5505) mvmt=(-0.0537,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1366,4.5178,-0.5505) mvmt=(-0.0537,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.637,6.982,93.469) lpos=(-11.137,4.518,-0.551) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1366,4.5178,-0.5505) mvmt=(-0.0537,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.3116,0.3698,1.0747) mvmt=(-0.0537,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,0.1298,0.9697) mvmt=(-0.0537,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-2.0815,-0.3803) mvmt=(-0.0537,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1366,4.5178,-0.5305) mvmt=(-0.0537,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.637,6.982,93.469) lpos=(-11.137,4.518,-0.551) lprev=(-11.083,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5178,-0.5505) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.982,93.469) lpos=(-11.083,4.518,-0.551) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5178,-0.5505) 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.2579,0.3698,1.0747) 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.2829,0.1298,0.9697) 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.2829,-2.0815,-0.3803) 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.0829,4.5178,-0.5305) 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.0829,4.5178,-0.5505) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.982,93.469) lpos=(-11.083,4.518,-0.551) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5178,-0.5505) 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.2579,0.3698,1.0747) 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.2829,0.1298,0.9697) 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.2829,-2.0815,-0.3803) 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.0829,4.5178,-0.5305) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1335,4.5062,-0.5625) mvmt=(-0.0506,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1335,4.5062,-0.5625) mvmt=(-0.0506,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.633,6.994,93.457) lpos=(-11.133,4.506,-0.563) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1335,4.5062,-0.5625) mvmt=(-0.0506,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3085,0.3582,1.0627) mvmt=(-0.0506,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3335,0.1182,0.9577) mvmt=(-0.0506,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3335,-2.0931,-0.3923) mvmt=(-0.0506,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1335,4.5062,-0.5425) mvmt=(-0.0506,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.633,6.994,93.457) lpos=(-11.133,4.506,-0.563) lprev=(-11.083,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5062,-0.5625) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.994,93.457) lpos=(-11.083,4.506,-0.563) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5062,-0.5625) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2579,0.3582,1.0627) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1182,0.9577) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0931,-0.3923) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5062,-0.5425) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5062,-0.5625) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.994,93.457) lpos=(-11.083,4.506,-0.563) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5062,-0.5625) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2579,0.3582,1.0627) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1182,0.9577) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0931,-0.3923) mvmt=(0.0000,0.1908,0.1973) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5062,-0.5425) mvmt=(0.0000,0.1908,0.1973) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1306,4.5118,-0.5567) mvmt=(-0.0477,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1306,4.5118,-0.5567) mvmt=(-0.0477,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,6.988,93.463) lpos=(-11.131,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1306,4.5118,-0.5567) mvmt=(-0.0477,0.1964,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=(-1.3056,0.3638,1.0685) mvmt=(-0.0477,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3306,0.1238,0.9635) mvmt=(-0.0477,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3306,-2.0875,-0.3865) mvmt=(-0.0477,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1306,4.5118,-0.5367) mvmt=(-0.0477,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,6.988,93.463) lpos=(-11.131,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5118,-0.5567) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.988,93.463) lpos=(-11.083,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5118,-0.5567) mvmt=(0.0000,0.1964,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=(-1.2579,0.3638,1.0685) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1238,0.9635) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0875,-0.3865) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5118,-0.5367) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5118,-0.5567) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,6.988,93.463) lpos=(-11.083,4.512,-0.557) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0829,4.5118,-0.5567) mvmt=(0.0000,0.1964,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=(-1.2579,0.3638,1.0685) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,0.1238,0.9635) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2829,-2.0875,-0.3865) mvmt=(0.0000,0.1964,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0829,4.5118,-0.5367) mvmt=(0.0000,0.1964,0.2031) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0977,4.5090,-0.5596) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,6.991,93.460) lpos=(-11.098,4.509,-0.560) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0977,4.5090,-0.5596) mvmt=(-0.0149,0.1935,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.2727,0.3609,1.0656) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,0.1209,0.9606) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,-2.0903,-0.3895) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0977,4.5090,-0.5396) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0977,4.5090,-0.5596) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,6.991,93.460) lpos=(-11.098,4.509,-0.560) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0977,4.5090,-0.5596) mvmt=(-0.0149,0.1935,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.2727,0.3609,1.0656) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,0.1209,0.9606) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,-2.0903,-0.3895) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0977,4.5090,-0.5396) mvmt=(-0.0149,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0977,4.3154,-0.7599) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.185,93.260) lpos=(-11.098,4.315,-0.760) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2727,0.1674,0.8653) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,-0.0726,0.7603) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,-2.2839,-0.5897) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0977,4.3154,-0.7399) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0977,4.3154,-1.5099) mvmt=(-0.0149,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.185,92.510) lpos=(-11.098,4.315,-1.510) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2727,0.1674,0.1153) mvmt=(-0.0149,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,-0.0726,0.0103) mvmt=(-0.0149,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2977,-0.0726,0.0103) out=(-0.2977,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0977,4.3154,-0.7599) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.598,7.185,93.260) lpos=(-11.098,4.315,-0.760) lprev=(-11.083,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2727,0.1674,0.8653) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,-0.0726,0.7603) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2977,-2.2839,-0.5897) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0977,4.3154,-0.7399) mvmt=(-0.0149,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0760,4.5263,-0.5417) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,6.974,93.478) lpos=(-11.076,4.526,-0.542) lprev=(-11.098,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0760,4.5263,-0.5417) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2510,0.3783,1.0835) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,0.1383,0.9785) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,-2.0730,-0.3715) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0760,4.5263,-0.5217) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0760,4.5263,-0.5417) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,6.974,93.478) lpos=(-11.076,4.526,-0.542) lprev=(-11.098,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0760,4.5263,-0.5417) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2510,0.3783,1.0835) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,0.1383,0.9785) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,-2.0730,-0.3715) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0760,4.5263,-0.5217) mvmt=(0.0218,0.2109,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0760,4.3154,-0.7599) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.185,93.260) lpos=(-11.076,4.315,-0.760) lprev=(-11.098,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2510,0.1674,0.8653) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,-0.0726,0.7603) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,-2.2839,-0.5897) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0760,4.3154,-0.7399) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0760,4.3154,-1.5099) mvmt=(0.0218,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.185,92.510) lpos=(-11.076,4.315,-1.510) lprev=(-11.098,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2510,0.1674,0.1153) mvmt=(0.0218,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,-0.0726,0.0103) mvmt=(0.0218,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2760,-0.0726,0.0103) out=(-0.2760,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0760,4.3154,-0.7599) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.185,93.260) lpos=(-11.076,4.315,-0.760) lprev=(-11.098,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2510,0.1674,0.8653) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,-0.0726,0.7603) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2760,-2.2839,-0.5897) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0760,4.3154,-0.7399) mvmt=(0.0218,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0184,4.5203,-0.5479) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.518,6.980,93.472) lpos=(-11.018,4.520,-0.548) lprev=(-11.076,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0184,4.5203,-0.5479) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1934,0.3723,1.0773) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,0.1323,0.9723) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,-2.0790,-0.3777) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0184,4.5203,-0.5279) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0184,4.5203,-0.5479) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.518,6.980,93.472) lpos=(-11.018,4.520,-0.548) lprev=(-11.076,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0184,4.5203,-0.5479) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1934,0.3723,1.0773) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,0.1323,0.9723) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,-2.0790,-0.3777) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0184,4.5203,-0.5279) mvmt=(0.0576,0.2049,0.2120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0184,4.3154,-0.7599) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.518,7.185,93.260) lpos=(-11.018,4.315,-0.760) lprev=(-11.076,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1934,0.1674,0.8653) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,-0.0726,0.7603) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,-2.2839,-0.5897) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0184,4.3154,-0.7399) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0184,4.3154,-1.5099) mvmt=(0.0576,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.518,7.185,92.510) lpos=(-11.018,4.315,-1.510) lprev=(-11.076,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1934,0.1674,0.1153) mvmt=(0.0576,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,-0.0726,0.0103) mvmt=(0.0576,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2184,-0.0726,0.0103) out=(-0.2184,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0184,4.3154,-0.7599) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.518,7.185,93.260) lpos=(-11.018,4.315,-0.760) lprev=(-11.076,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1934,0.1674,0.8653) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,-0.0726,0.7603) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2184,-2.2839,-0.5897) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0184,4.3154,-0.7399) mvmt=(0.0576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9621,4.5156,-0.5528) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,6.984,93.467) lpos=(-10.962,4.516,-0.553) lprev=(-11.018,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9621,4.5156,-0.5528) mvmt=(0.0563,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.1371,0.3676,1.0724) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,0.1276,0.9674) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.0837,-0.3826) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.5156,-0.5328) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.5156,-0.5528) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,6.984,93.467) lpos=(-10.962,4.516,-0.553) lprev=(-11.018,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9621,4.5156,-0.5528) mvmt=(0.0563,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.1371,0.3676,1.0724) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,0.1276,0.9674) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.0837,-0.3826) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.5156,-0.5328) mvmt=(0.0563,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3154,-0.7599) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,7.185,93.260) lpos=(-10.962,4.315,-0.760) lprev=(-11.018,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1371,0.1674,0.8653) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-0.0726,0.7603) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.2839,-0.5897) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3154,-0.7399) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3154,-1.5099) mvmt=(0.0563,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,7.185,92.510) lpos=(-10.962,4.315,-1.510) lprev=(-11.018,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1371,0.1674,0.1153) mvmt=(0.0563,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-0.0726,0.0103) mvmt=(0.0563,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1621,-0.0726,0.0103) out=(-0.1621,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9621,4.3154,-0.7599) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.462,7.185,93.260) lpos=(-10.962,4.315,-0.760) lprev=(-11.018,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1371,0.1674,0.8653) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-0.0726,0.7603) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1621,-2.2839,-0.5897) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9621,4.3154,-0.7399) mvmt=(0.0563,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9085,4.5060,-0.5627) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,6.994,93.457) lpos=(-10.909,4.506,-0.563) lprev=(-10.962,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9085,4.5060,-0.5627) mvmt=(0.0536,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.0835,0.3580,1.0625) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,0.1180,0.9575) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,-2.0933,-0.3925) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9085,4.5060,-0.5427) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9085,4.5060,-0.5627) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,6.994,93.457) lpos=(-10.909,4.506,-0.563) lprev=(-10.962,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9085,4.5060,-0.5627) mvmt=(0.0536,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.0835,0.3580,1.0625) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,0.1180,0.9575) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,-2.0933,-0.3925) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9085,4.5060,-0.5427) mvmt=(0.0536,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9085,4.3154,-0.7599) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.185,93.260) lpos=(-10.909,4.315,-0.760) lprev=(-10.962,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0835,0.1674,0.8653) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,-0.0726,0.7603) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,-2.2839,-0.5897) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9085,4.3154,-0.7399) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9085,4.3154,-1.5099) mvmt=(0.0536,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.185,92.510) lpos=(-10.909,4.315,-1.510) lprev=(-10.962,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0835,0.1674,0.1153) mvmt=(0.0536,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,-0.0726,0.0103) mvmt=(0.0536,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1085,-0.0726,0.0103) out=(-0.1085,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9085,4.3154,-0.7599) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.185,93.260) lpos=(-10.909,4.315,-0.760) lprev=(-10.962,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0835,0.1674,0.8653) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,-0.0726,0.7603) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1085,-2.2839,-0.5897) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9085,4.3154,-0.7399) mvmt=(0.0536,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8525,4.5147,-0.5537) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,6.985,93.466) lpos=(-10.853,4.515,-0.554) lprev=(-10.909,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8525,4.5147,-0.5537) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0275,0.3667,1.0715) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,0.1267,0.9665) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,-2.0846,-0.3835) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8525,4.5147,-0.5337) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8525,4.5147,-0.5537) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,6.985,93.466) lpos=(-10.853,4.515,-0.554) lprev=(-10.909,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8525,4.5147,-0.5537) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0275,0.3667,1.0715) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,0.1267,0.9665) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,-2.0846,-0.3835) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8525,4.5147,-0.5337) mvmt=(0.0560,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8525,4.3154,-0.7599) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,7.185,93.260) lpos=(-10.853,4.315,-0.760) lprev=(-10.909,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0275,0.1674,0.8653) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,-0.0726,0.7603) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,-2.2839,-0.5897) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8525,4.3154,-0.7399) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8525,4.3154,-1.5099) mvmt=(0.0560,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,7.185,92.510) lpos=(-10.853,4.315,-1.510) lprev=(-10.909,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0275,0.1674,0.1153) mvmt=(0.0560,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,-0.0726,0.0103) mvmt=(0.0560,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0525,-0.0726,0.0103) out=(-0.0525,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8525,4.3154,-0.7599) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.353,7.185,93.260) lpos=(-10.853,4.315,-0.760) lprev=(-10.909,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0275,0.1674,0.8653) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,-0.0726,0.7603) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0525,-2.2839,-0.5897) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8525,4.3154,-0.7399) mvmt=(0.0560,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7967,4.5138,-0.5546) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,6.986,93.465) lpos=(-10.797,4.514,-0.555) lprev=(-10.853,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7967,4.5138,-0.5546) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.3658,1.0705) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,0.1258,0.9656) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.0855,-0.3845) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.5138,-0.5347) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.5138,-0.5546) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,6.986,93.465) lpos=(-10.797,4.514,-0.555) lprev=(-10.853,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7967,4.5138,-0.5546) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.3658,1.0705) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,0.1258,0.9656) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.0855,-0.3845) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.5138,-0.5347) mvmt=(0.0558,0.1984,0.2052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3154,-0.7599) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.185,93.260) lpos=(-10.797,4.315,-0.760) lprev=(-10.853,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9717,0.1674,0.8653) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-0.0726,0.7603) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.2839,-0.5897) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3154,-0.7399) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3154,-1.5099) mvmt=(0.0558,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.185,92.510) lpos=(-10.797,4.315,-1.510) lprev=(-10.853,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9717,0.1674,0.1153) mvmt=(0.0558,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-0.0726,0.0103) mvmt=(0.0558,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0033,-0.0726,0.0103) out=(0.0033,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.3154,-0.7599) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.185,93.260) lpos=(-10.797,4.315,-0.760) lprev=(-10.853,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9717,0.1674,0.8653) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-0.0726,0.7603) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.2839,-0.5897) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3154,-0.7399) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7417,4.5111,-0.5575) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.242,6.989,93.463) lpos=(-10.742,4.511,-0.557) lprev=(-10.797,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7417,4.5111,-0.5575) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9167,0.3630,1.0677) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,0.1230,0.9627) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,-2.0882,-0.3873) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7417,4.5111,-0.5375) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7417,4.5111,-0.5575) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.242,6.989,93.463) lpos=(-10.742,4.511,-0.557) lprev=(-10.797,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7417,4.5111,-0.5575) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9167,0.3630,1.0677) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,0.1230,0.9627) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,-2.0882,-0.3873) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7417,4.5111,-0.5375) mvmt=(0.0550,0.1956,0.2024) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7417,4.3154,-0.7599) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.242,7.185,93.260) lpos=(-10.742,4.315,-0.760) lprev=(-10.797,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9167,0.1674,0.8653) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,-0.0726,0.7603) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,-2.2839,-0.5897) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7417,4.3154,-0.7399) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7417,4.3154,-1.5099) mvmt=(0.0550,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.242,7.185,92.510) lpos=(-10.742,4.315,-1.510) lprev=(-10.797,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9167,0.1674,0.1153) mvmt=(0.0550,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,-0.0726,0.0103) mvmt=(0.0550,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0583,-0.0726,0.0103) out=(0.0583,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7417,4.3154,-0.7599) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.242,7.185,93.260) lpos=(-10.742,4.315,-0.760) lprev=(-10.797,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9167,0.1674,0.8653) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,-0.0726,0.7603) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0583,-2.2839,-0.5897) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7417,4.3154,-0.7399) mvmt=(0.0550,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6873,4.5093,-0.5593) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,6.991,93.461) lpos=(-10.687,4.509,-0.559) lprev=(-10.742,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6873,4.5093,-0.5593) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8623,0.3612,1.0659) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,0.1212,0.9609) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,-2.0900,-0.3891) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6873,4.5093,-0.5393) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6873,4.5093,-0.5593) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,6.991,93.461) lpos=(-10.687,4.509,-0.559) lprev=(-10.742,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6873,4.5093,-0.5593) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8623,0.3612,1.0659) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,0.1212,0.9609) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,-2.0900,-0.3891) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6873,4.5093,-0.5393) mvmt=(0.0545,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6873,4.3154,-0.7599) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.185,93.260) lpos=(-10.687,4.315,-0.760) lprev=(-10.742,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8623,0.1674,0.8653) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,-0.0726,0.7603) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,-2.2839,-0.5897) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6873,4.3154,-0.7399) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6873,4.3154,-1.5099) mvmt=(0.0545,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.185,92.510) lpos=(-10.687,4.315,-1.510) lprev=(-10.742,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8623,0.1674,0.1153) mvmt=(0.0545,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,-0.0726,0.0103) mvmt=(0.0545,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1127,-0.0726,0.0103) out=(0.1127,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6873,4.3154,-0.7599) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.187,7.185,93.260) lpos=(-10.687,4.315,-0.760) lprev=(-10.742,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8623,0.1674,0.8653) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,-0.0726,0.7603) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1127,-2.2839,-0.5897) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6873,4.3154,-0.7399) mvmt=(0.0545,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6314,4.5141,-0.5544) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,6.986,93.466) lpos=(-10.631,4.514,-0.554) lprev=(-10.687,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6314,4.5141,-0.5544) mvmt=(0.0558,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.8064,0.3660,1.0708) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,0.1260,0.9658) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,-2.0853,-0.3842) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6314,4.5141,-0.5344) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6314,4.5141,-0.5544) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,6.986,93.466) lpos=(-10.631,4.514,-0.554) lprev=(-10.687,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6314,4.5141,-0.5544) mvmt=(0.0558,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.8064,0.3660,1.0708) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,0.1260,0.9658) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,-2.0853,-0.3842) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6314,4.5141,-0.5344) mvmt=(0.0558,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6314,4.3154,-0.7599) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,7.185,93.260) lpos=(-10.631,4.315,-0.760) lprev=(-10.687,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8064,0.1674,0.8653) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,-0.0726,0.7603) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,-2.2839,-0.5897) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6314,4.3154,-0.7399) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6314,4.3154,-1.5099) mvmt=(0.0558,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,7.185,92.510) lpos=(-10.631,4.315,-1.510) lprev=(-10.687,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8064,0.1674,0.1153) mvmt=(0.0558,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,-0.0726,0.0103) mvmt=(0.0558,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1686,-0.0726,0.0103) out=(0.1686,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6314,4.3154,-0.7599) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,7.185,93.260) lpos=(-10.631,4.315,-0.760) lprev=(-10.687,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8064,0.1674,0.8653) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,-0.0726,0.7603) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1686,-2.2839,-0.5897) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6314,4.3154,-0.7399) mvmt=(0.0558,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5763,4.5115,-0.5570) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,6.988,93.463) lpos=(-10.576,4.512,-0.557) lprev=(-10.631,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5763,4.5115,-0.5570) mvmt=(0.0551,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.7513,0.3635,1.0682) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,0.1235,0.9632) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,-2.0878,-0.3868) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2441,-2.9158,2.4675) mvmt=(-0.1587,0.1276,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5763,4.5115,-0.5370) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5763,4.5115,-0.5570) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,6.988,93.463) lpos=(-10.576,4.512,-0.557) lprev=(-10.631,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5763,4.5115,-0.5570) mvmt=(0.0551,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.7513,0.3635,1.0682) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,0.1235,0.9632) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,-2.0878,-0.3868) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2441,-2.9158,2.4675) mvmt=(-0.1587,0.1276,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5763,4.5115,-0.5370) mvmt=(0.0551,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5763,4.3154,-0.7599) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,7.185,93.260) lpos=(-10.576,4.315,-0.760) lprev=(-10.631,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7513,0.1674,0.8653) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,-0.0726,0.7603) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,-2.2839,-0.5897) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5763,4.3154,-0.7399) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5763,4.3154,-1.5099) mvmt=(0.0551,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,7.185,92.510) lpos=(-10.576,4.315,-1.510) lprev=(-10.631,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7513,0.1674,0.1153) mvmt=(0.0551,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,-0.0726,0.0103) mvmt=(0.0551,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2237,-0.0726,0.0103) out=(0.2237,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5763,4.3154,-0.7599) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.076,7.185,93.260) lpos=(-10.576,4.315,-0.760) lprev=(-10.631,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7513,0.1674,0.8653) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,-0.0726,0.7603) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2237,-2.2839,-0.5897) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5763,4.3154,-0.7399) mvmt=(0.0551,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5174,4.5251,-0.5430) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.017,6.975,93.477) lpos=(-10.517,4.525,-0.543) lprev=(-10.576,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5174,4.5251,-0.5430) mvmt=(0.0589,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.6924,0.3771,1.0822) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,0.1371,0.9772) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,-2.0742,-0.3728) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2547,-2.8563,2.4815) mvmt=(-0.1697,0.1365,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5174,4.5251,-0.5230) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5174,4.5251,-0.5430) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.017,6.975,93.477) lpos=(-10.517,4.525,-0.543) lprev=(-10.576,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5174,4.5251,-0.5430) mvmt=(0.0589,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.6924,0.3771,1.0822) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,0.1371,0.9772) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,-2.0742,-0.3728) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2547,-2.8563,2.4815) mvmt=(-0.1697,0.1365,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5174,4.5251,-0.5230) mvmt=(0.0589,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5174,4.3154,-0.7599) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.017,7.185,93.260) lpos=(-10.517,4.315,-0.760) lprev=(-10.576,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6924,0.1674,0.8653) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,-0.0726,0.7603) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,-2.2839,-0.5897) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5174,4.3154,-0.7399) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5174,4.3154,-1.5099) mvmt=(0.0589,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.017,7.185,92.510) lpos=(-10.517,4.315,-1.510) lprev=(-10.576,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6924,0.1674,0.1153) mvmt=(0.0589,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,-0.0726,0.0103) mvmt=(0.0589,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2826,-0.0726,0.0103) out=(0.2826,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5174,4.3154,-0.7599) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.017,7.185,93.260) lpos=(-10.517,4.315,-0.760) lprev=(-10.576,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6924,0.1674,0.8653) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,-0.0726,0.7603) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2826,-2.2839,-0.5897) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5174,4.3154,-0.7399) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4641,4.5049,-0.5639) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.995,93.456) lpos=(-10.464,4.505,-0.564) lprev=(-10.517,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4641,4.5049,-0.5639) mvmt=(0.0533,0.1894,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.6391,0.3568,1.0613) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,0.1168,0.9563) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-2.0944,-0.3937) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2942,-2.8152,2.4606) mvmt=(-0.1534,0.1233,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5049,-0.5439) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5049,-0.5639) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.995,93.456) lpos=(-10.464,4.505,-0.564) lprev=(-10.517,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4641,4.5049,-0.5639) mvmt=(0.0533,0.1894,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.6391,0.3568,1.0613) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,0.1168,0.9563) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-2.0944,-0.3937) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2942,-2.8152,2.4606) mvmt=(-0.1534,0.1233,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5049,-0.5439) mvmt=(0.0533,0.1894,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.3154,-0.7599) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,7.185,93.260) lpos=(-10.464,4.315,-0.760) lprev=(-10.517,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6391,0.1674,0.8653) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-0.0726,0.7603) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-2.2839,-0.5897) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.3154,-0.7399) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.3154,-1.5099) mvmt=(0.0533,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,7.185,92.510) lpos=(-10.464,4.315,-1.510) lprev=(-10.517,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6391,0.1674,0.1153) mvmt=(0.0533,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-0.0726,0.0103) mvmt=(0.0533,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3359,-0.0726,0.0103) out=(0.3359,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4641,4.3154,-0.7599) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,7.185,93.260) lpos=(-10.464,4.315,-0.760) lprev=(-10.517,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6391,0.1674,0.8653) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-0.0726,0.7603) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-2.2839,-0.5897) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.3154,-0.7399) mvmt=(0.0533,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4092,4.5107,-0.5579) mvmt=(0.0549,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4092,4.5107,-0.5579) mvmt=(0.0549,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.909,6.989,93.462) lpos=(-10.409,4.511,-0.558) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4092,4.5107,-0.5579) mvmt=(0.0549,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.5842,0.3626,1.0673) mvmt=(0.0549,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3908,0.1226,0.9623) mvmt=(0.0549,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3908,-2.0886,-0.3877) mvmt=(0.0549,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3104,-2.7625,2.4666) mvmt=(-0.1580,0.1271,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4092,4.5107,-0.5379) mvmt=(0.0549,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.909,6.989,93.462) lpos=(-10.409,4.511,-0.558) lprev=(-10.464,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4092,4.3154,-0.7599) mvmt=(0.0549,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.909,7.185,93.260) lpos=(-10.409,4.315,-0.760) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5842,0.1674,0.8653) mvmt=(0.0549,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4092,4.3154,-0.7599) mvmt=(0.0549,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.909,7.185,93.260) lpos=(-10.409,4.315,-0.760) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5842,0.1674,0.8653) mvmt=(0.0549,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5842,0.1674,0.8653) out=(-0.5842,0.1674,1.1962) 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.4485 dpPos=0.2460 dpMove=-0.4243 iDist=0.5515 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.4092,4.3154,-0.4290) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.909,7.185,93.591) lpos=(-10.409,4.315,-0.429) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4092,4.3154,-0.4290) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 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.4092,4.3154,-0.4290) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5842,0.1674,1.1962) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.3908,-0.0726,1.0912) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.3908,-2.2839,-0.2588) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4900,-2.8391,2.5955) mvmt=(0.0215,0.0505,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.4092,4.3154,-0.4090) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.4092,4.3154,-0.4290) mvmt=(0.0549,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.909,7.185,93.591) lpos=(-10.409,4.315,-0.429) lprev=(-10.464,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4641,4.5119,-0.4314) mvmt=(0.0000,0.1964,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5119,-0.4314) mvmt=(0.0000,0.1964,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.988,93.589) lpos=(-10.464,4.512,-0.431) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4641,4.5119,-0.4314) mvmt=(0.0000,0.1964,0.3285) 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.4641,4.5119,-0.4314) mvmt=(0.0000,0.1964,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6391,0.3638,1.1938) mvmt=(0.0000,0.1964,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,0.1238,1.0888) mvmt=(0.0000,0.1964,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-2.0874,-0.2612) mvmt=(0.0000,0.1964,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2877,-2.8125,2.5931) mvmt=(-0.1807,0.0771,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5119,-0.4114) mvmt=(0.0000,0.1964,0.3285) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.988,93.589) lpos=(-10.464,4.512,-0.431) lprev=(-10.464,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4045,4.5348,-0.4084) mvmt=(0.0596,0.2194,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4045,4.5348,-0.4084) mvmt=(0.0596,0.2194,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,6.965,93.612) lpos=(-10.405,4.535,-0.408) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4045,4.5348,-0.4084) mvmt=(0.0596,0.2194,0.3514) 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.4045,4.5348,-0.4084) mvmt=(0.0596,0.2194,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5795,0.3868,1.2168) mvmt=(0.0596,0.2194,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3955,0.1468,1.1118) mvmt=(0.0596,0.2194,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3955,-2.0645,-0.2382) mvmt=(0.0596,0.2194,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2900,-2.7487,2.6161) mvmt=(-0.1784,0.1409,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4045,4.5348,-0.3884) mvmt=(0.0596,0.2194,0.3514) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,6.965,93.612) lpos=(-10.405,4.535,-0.408) lprev=(-10.464,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4045,4.3154,-0.7599) mvmt=(0.0596,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.185,93.260) lpos=(-10.405,4.315,-0.760) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5795,0.1674,0.8653) mvmt=(0.0596,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4045,4.3154,-0.7599) mvmt=(0.0596,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.185,93.260) lpos=(-10.405,4.315,-0.760) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5795,0.1674,0.8653) mvmt=(0.0596,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5795,0.1674,0.8653) out=(-0.5795,0.1674,1.1962) 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.4485 dpPos=0.2460 dpMove=-0.4243 iDist=0.5515 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4045,4.3154,-0.4290) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.185,93.591) lpos=(-10.405,4.315,-0.429) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4045,4.3154,-0.4290) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 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.4045,4.3154,-0.4290) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5795,0.1674,1.1962) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.3955,-0.0726,1.0912) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.3955,-2.2839,-0.2588) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4918,-2.8348,2.5955) mvmt=(0.0234,0.0548,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.4045,4.3154,-0.4090) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.4045,4.3154,-0.4290) mvmt=(0.0596,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.905,7.185,93.591) lpos=(-10.405,4.315,-0.429) lprev=(-10.464,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4641,4.5142,-0.4290) mvmt=(0.0000,0.1988,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5142,-0.4290) mvmt=(0.0000,0.1988,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.986,93.591) lpos=(-10.464,4.514,-0.429) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4641,4.5142,-0.4290) mvmt=(0.0000,0.1988,0.3308) 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.4641,4.5142,-0.4290) mvmt=(0.0000,0.1988,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6391,0.3662,1.1962) mvmt=(0.0000,0.1988,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,0.1262,1.0912) mvmt=(0.0000,0.1988,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3359,-2.0851,-0.2588) mvmt=(0.0000,0.1988,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2856,-2.8116,2.5955) mvmt=(-0.1828,0.0780,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4641,4.5142,-0.4090) mvmt=(0.0000,0.1988,0.3308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.964,6.986,93.591) lpos=(-10.464,4.514,-0.429) lprev=(-10.464,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4269,4.4526,-0.4907) mvmt=(0.0372,0.1371,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.4526,-0.4907) mvmt=(0.0372,0.1371,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.047,93.529) lpos=(-10.427,4.453,-0.491) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4269,4.4526,-0.4907) mvmt=(0.0372,0.1371,0.2692) 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.4269,4.4526,-0.4907) mvmt=(0.0372,0.1371,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6019,0.3045,1.1345) mvmt=(0.0372,0.1371,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,0.0645,1.0295) mvmt=(0.0372,0.1371,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,-2.1467,-0.3205) mvmt=(0.0372,0.1371,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3569,-2.8015,2.5338) mvmt=(-0.1115,0.0881,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.4526,-0.4707) mvmt=(0.0372,0.1371,0.2692) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.047,93.529) lpos=(-10.427,4.453,-0.491) lprev=(-10.464,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4269,4.3154,-0.7599) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.185,93.260) lpos=(-10.427,4.315,-0.760) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6019,0.1674,0.8653) 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.3731,-0.0726,0.7603) 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.3731,-2.2839,-0.5897) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.3154,-0.7399) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.3154,-1.5099) mvmt=(0.0372,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.185,92.510) lpos=(-10.427,4.315,-1.510) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6019,0.1674,0.1153) 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.3731,-0.0726,0.0103) 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.3731,-0.0726,0.0103) out=(0.3731,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4269,4.3154,-0.7599) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.185,93.260) lpos=(-10.427,4.315,-0.760) lprev=(-10.464,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6019,0.1674,0.8653) 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.3731,-0.0726,0.7603) 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.3731,-2.2839,-0.5897) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.3154,-0.7399) mvmt=(0.0372,0.0000,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=(-10.3896,4.4479,-0.6228) mvmt=(0.0372,0.1325,0.1371) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3896,4.4479,-0.6228) mvmt=(0.0372,0.1325,0.1371) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.052,93.397) lpos=(-10.390,4.448,-0.623) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3896,4.4479,-0.6228) mvmt=(0.0372,0.1325,0.1371) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5646,0.2999,1.0024) mvmt=(0.0372,0.1325,0.1371) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5646,0.2999,1.0024) out=(-0.5646,0.2999,1.3287) delta=(0.0000,0.0000,0.3263) deltaMag=0.3263 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4561 dpPos=0.2493 dpMove=-0.4243 iDist=0.5439 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.3896,4.4479,-0.2965) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.052,93.724) lpos=(-10.390,4.448,-0.296) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3896,4.4479,-0.2965) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 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.3896,4.4479,-0.2965) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5646,0.2999,1.3287) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[push-back-disp] site=dispatch center=(0.4104,0.0599,1.2237) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[push-back-disp] site=dispatch center=(0.4104,-2.1514,-0.1263) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[push-back-disp] site=dispatch center=(0.3758,-2.7691,2.7280) mvmt=(-0.1073,0.0862,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[push-back-disp] site=dispatch center=(-10.3896,4.4479,-0.2765) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[push-back-disp] site=dispatch center=(-10.3896,4.4479,-0.2965) mvmt=(0.0372,0.1325,0.4634) collide=False insertType=1 objState=0x303 winterp=0.4561 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.052,93.724) lpos=(-10.390,4.448,-0.296) lprev=(-10.427,4.315,-0.760) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.052,93.397) lpos=(-10.390,4.448,-0.623) lprev=(-10.427,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3896,4.3154,-0.7599) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.185,93.260) lpos=(-10.390,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5646,0.1674,0.8653) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4561 return=-1 +[push-back-disp] site=dispatch center=(-10.3896,4.3154,-0.7599) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.185,93.260) lpos=(-10.390,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5646,0.1674,0.8653) mvmt=(0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5646,0.1674,0.8653) out=(-0.5646,0.1674,1.1962) 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.4485 dpPos=0.2460 dpMove=-0.4243 iDist=0.5515 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3896,4.3154,-0.4290) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.185,93.591) lpos=(-10.390,4.315,-0.429) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3896,4.3154,-0.4290) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 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.3896,4.3154,-0.4290) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5646,0.1674,1.1962) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4104,-0.0726,1.0912) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4104,-2.2839,-0.2588) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4977,-2.8210,2.5955) mvmt=(0.0146,0.0343,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3896,4.3154,-0.4090) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3896,4.3154,-0.4290) mvmt=(0.0372,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.890,7.185,93.591) lpos=(-10.390,4.315,-0.429) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4269,4.5203,-0.4230) mvmt=(0.0000,0.2048,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5203,-0.4230) mvmt=(0.0000,0.2048,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.980,93.597) lpos=(-10.427,4.520,-0.423) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4269,4.5203,-0.4230) mvmt=(0.0000,0.2048,0.3369) 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.4269,4.5203,-0.4230) mvmt=(0.0000,0.2048,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6019,0.3722,1.2022) mvmt=(0.0000,0.2048,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,0.1322,1.0972) mvmt=(0.0000,0.2048,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,-2.0791,-0.2528) mvmt=(0.0000,0.2048,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2947,-2.7750,2.6015) mvmt=(-0.1884,0.0804,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5203,-0.4030) mvmt=(0.0000,0.2048,0.3369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.980,93.597) lpos=(-10.427,4.520,-0.423) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3680,4.5322,-0.4110) mvmt=(0.0589,0.2167,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3680,4.5322,-0.4110) mvmt=(0.0589,0.2167,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.868,6.968,93.609) lpos=(-10.368,4.532,-0.411) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3680,4.5322,-0.4110) mvmt=(0.0589,0.2167,0.3488) 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.3680,4.5322,-0.4110) mvmt=(0.0589,0.2167,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5430,0.3841,1.2141) mvmt=(0.0589,0.2167,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4320,0.1441,1.1092) mvmt=(0.0589,0.2167,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4320,-2.0671,-0.2409) mvmt=(0.0589,0.2167,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3068,-2.7161,2.6135) mvmt=(-0.1763,0.1392,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3680,4.5322,-0.3911) mvmt=(0.0589,0.2167,0.3488) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.868,6.968,93.609) lpos=(-10.368,4.532,-0.411) lprev=(-10.427,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3680,4.3154,-0.7599) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.868,7.185,93.260) lpos=(-10.368,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5430,0.1674,0.8653) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3680,4.3154,-0.7599) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.868,7.185,93.260) lpos=(-10.368,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5430,0.1674,0.8653) mvmt=(0.0589,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5430,0.1674,0.8653) out=(-0.5430,0.1674,1.1962) 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.4485 dpPos=0.2460 dpMove=-0.4243 iDist=0.5515 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3680,4.3154,-0.4290) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.868,7.185,93.591) lpos=(-10.368,4.315,-0.429) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3680,4.3154,-0.4290) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 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.3680,4.3154,-0.4290) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5430,0.1674,1.1962) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4320,-0.0726,1.0912) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4320,-2.2839,-0.2588) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.5061,-2.8012,2.5955) mvmt=(0.0231,0.0541,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3680,4.3154,-0.4090) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3680,4.3154,-0.4290) mvmt=(0.0589,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.868,7.185,93.591) lpos=(-10.368,4.315,-0.429) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4269,4.5341,-0.4091) mvmt=(0.0000,0.2187,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5341,-0.4091) mvmt=(0.0000,0.2187,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.966,93.611) lpos=(-10.427,4.534,-0.409) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4269,4.5341,-0.4091) mvmt=(0.0000,0.2187,0.3507) 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.4269,4.5341,-0.4091) mvmt=(0.0000,0.2187,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6019,0.3861,1.2160) mvmt=(0.0000,0.2187,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,0.1461,1.1111) mvmt=(0.0000,0.2187,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,-2.0652,-0.2390) mvmt=(0.0000,0.2187,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2819,-2.7695,2.6154) mvmt=(-0.2011,0.0858,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5341,-0.3892) mvmt=(0.0000,0.2187,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.966,93.611) lpos=(-10.427,4.534,-0.409) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3690,4.5286,-0.4146) mvmt=(0.0579,0.2132,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.5286,-0.4146) mvmt=(0.0579,0.2132,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,6.971,93.605) lpos=(-10.369,4.529,-0.415) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3690,4.5286,-0.4146) mvmt=(0.0579,0.2132,0.3452) 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.3690,4.5286,-0.4146) mvmt=(0.0579,0.2132,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5440,0.3806,1.2106) mvmt=(0.0579,0.2132,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4310,0.1406,1.1056) mvmt=(0.0579,0.2132,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4310,-2.0707,-0.2444) mvmt=(0.0579,0.2132,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3097,-2.7184,2.6099) mvmt=(-0.1734,0.1369,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.5286,-0.3946) mvmt=(0.0579,0.2132,0.3452) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,6.971,93.605) lpos=(-10.369,4.529,-0.415) lprev=(-10.427,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.7599) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.260) lpos=(-10.369,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5440,0.1674,0.8653) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.7599) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.260) lpos=(-10.369,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5440,0.1674,0.8653) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5440,0.1674,0.8653) out=(-0.5440,0.1674,1.1962) 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.4485 dpPos=0.2460 dpMove=-0.4243 iDist=0.5515 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.591) lpos=(-10.369,4.315,-0.429) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 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.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5440,0.1674,1.1962) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4310,-0.0726,1.0912) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4310,-2.2839,-0.2588) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.5058,-2.8021,2.5955) mvmt=(0.0227,0.0533,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4090) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.591) lpos=(-10.369,4.315,-0.429) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4269,4.5340,-0.4093) mvmt=(0.0000,0.2185,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5340,-0.4093) mvmt=(0.0000,0.2185,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.966,93.611) lpos=(-10.427,4.534,-0.409) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4269,4.5340,-0.4093) mvmt=(0.0000,0.2185,0.3506) 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.4269,4.5340,-0.4093) mvmt=(0.0000,0.2185,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6019,0.3859,1.2159) mvmt=(0.0000,0.2185,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,0.1459,1.1109) mvmt=(0.0000,0.2185,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,-2.0653,-0.2391) mvmt=(0.0000,0.2185,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2820,-2.7696,2.6152) mvmt=(-0.2010,0.0857,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5340,-0.3893) mvmt=(0.0000,0.2185,0.3506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.966,93.611) lpos=(-10.427,4.534,-0.409) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3690,4.5285,-0.4148) mvmt=(0.0579,0.2130,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.5285,-0.4148) mvmt=(0.0579,0.2130,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,6.972,93.605) lpos=(-10.369,4.528,-0.415) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3690,4.5285,-0.4148) mvmt=(0.0579,0.2130,0.3451) 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.3690,4.5285,-0.4148) mvmt=(0.0579,0.2130,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5440,0.3804,1.2104) mvmt=(0.0579,0.2130,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4310,0.1404,1.1054) mvmt=(0.0579,0.2130,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4310,-2.0708,-0.2446) mvmt=(0.0579,0.2130,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3098,-2.7185,2.6097) mvmt=(-0.1733,0.1368,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.5285,-0.3948) mvmt=(0.0579,0.2130,0.3451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,6.972,93.605) lpos=(-10.369,4.528,-0.415) lprev=(-10.427,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.7599) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.260) lpos=(-10.369,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5440,0.1674,0.8653) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.7599) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.260) lpos=(-10.369,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5440,0.1674,0.8653) mvmt=(0.0579,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5440,0.1674,0.8653) out=(-0.5440,0.1674,1.1962) 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.4485 dpPos=0.2460 dpMove=-0.4243 iDist=0.5515 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.591) lpos=(-10.369,4.315,-0.429) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 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.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5440,0.1674,1.1962) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4310,-0.0726,1.0912) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.4310,-2.2839,-0.2588) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(0.5057,-2.8021,2.5955) mvmt=(0.0227,0.0532,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4090) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4485 return=-1 +[push-back-disp] site=dispatch center=(-10.3690,4.3154,-0.4290) mvmt=(0.0579,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4485 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.869,7.185,93.591) lpos=(-10.369,4.315,-0.429) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4269,4.5140,-0.4292) mvmt=(0.0000,0.1986,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5140,-0.4292) mvmt=(0.0000,0.1986,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.986,93.591) lpos=(-10.427,4.514,-0.429) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4269,4.5140,-0.4292) mvmt=(0.0000,0.1986,0.3306) 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.4269,4.5140,-0.4292) mvmt=(0.0000,0.1986,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6019,0.3660,1.1960) mvmt=(0.0000,0.1986,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,0.1260,1.0910) mvmt=(0.0000,0.1986,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3731,-2.0853,-0.2590) mvmt=(0.0000,0.1986,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3004,-2.7774,2.5953) mvmt=(-0.1827,0.0779,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4269,4.5140,-0.4092) mvmt=(0.0000,0.1986,0.3306) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.986,93.591) lpos=(-10.427,4.514,-0.429) lprev=(-10.427,4.315,-0.760) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4346,4.5270,-0.4162) mvmt=(-0.0077,0.2116,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4346,4.5270,-0.4162) mvmt=(-0.0077,0.2116,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,6.973,93.604) lpos=(-10.435,4.527,-0.416) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4346,4.5270,-0.4162) mvmt=(-0.0077,0.2116,0.3436) 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.4346,4.5270,-0.4162) mvmt=(-0.0077,0.2116,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6096,0.3790,1.2090) mvmt=(-0.0077,0.2116,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3654,0.1390,1.1040) mvmt=(-0.0077,0.2116,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3654,-2.0723,-0.2460) mvmt=(-0.0077,0.2116,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2854,-2.7794,2.6083) mvmt=(-0.1976,0.0759,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4346,4.5270,-0.3962) mvmt=(-0.0077,0.2116,0.3436) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,6.973,93.604) lpos=(-10.435,4.527,-0.416) lprev=(-10.427,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4346,4.3154,-0.7599) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.185,93.260) lpos=(-10.435,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6096,0.1674,0.8653) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3654,-0.0726,0.7603) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3654,-2.2839,-0.5897) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4346,4.3154,-0.7399) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4346,4.3154,-1.5099) mvmt=(-0.0077,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.185,92.510) lpos=(-10.435,4.315,-1.510) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6096,0.1674,0.1153) mvmt=(-0.0077,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3654,-0.0726,0.0103) mvmt=(-0.0077,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3654,-0.0726,0.0103) out=(0.3654,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4346,4.3154,-0.7599) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.185,93.260) lpos=(-10.435,4.315,-0.760) lprev=(-10.427,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6096,0.1674,0.8653) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3654,-0.0726,0.7603) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3654,-2.2839,-0.5897) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4346,4.3154,-0.7399) mvmt=(-0.0077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4730,4.5059,-0.5629) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.994,93.457) lpos=(-10.473,4.506,-0.563) lprev=(-10.435,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4730,4.5059,-0.5629) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6480,0.3578,1.0623) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,0.1178,0.9574) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,-2.0934,-0.3927) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2898,-2.8230,2.4616) mvmt=(-0.1902,0.0394,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4730,4.5059,-0.5429) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4730,4.5059,-0.5629) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,6.994,93.457) lpos=(-10.473,4.506,-0.563) lprev=(-10.435,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4730,4.5059,-0.5629) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6480,0.3578,1.0623) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,0.1178,0.9574) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,-2.0934,-0.3927) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2898,-2.8230,2.4616) mvmt=(-0.1902,0.0394,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4730,4.5059,-0.5429) mvmt=(-0.0384,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4730,4.3154,-0.7599) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,7.185,93.260) lpos=(-10.473,4.315,-0.760) lprev=(-10.435,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6480,0.1674,0.8653) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,-0.0726,0.7603) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,-2.2839,-0.5897) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4730,4.3154,-0.7399) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4730,4.3154,-1.5099) mvmt=(-0.0384,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,7.185,92.510) lpos=(-10.473,4.315,-1.510) lprev=(-10.435,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6480,0.1674,0.1153) mvmt=(-0.0384,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,-0.0726,0.0103) mvmt=(-0.0384,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3270,-0.0726,0.0103) out=(0.3270,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.4730,4.3154,-0.7599) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.973,7.185,93.260) lpos=(-10.473,4.315,-0.760) lprev=(-10.435,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6480,0.1674,0.8653) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,-0.0726,0.7603) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3270,-2.2839,-0.5897) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4730,4.3154,-0.7399) mvmt=(-0.0384,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5502,4.5183,-0.5500) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.050,6.982,93.470) lpos=(-10.550,4.518,-0.550) lprev=(-10.473,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5502,4.5183,-0.5500) mvmt=(-0.0773,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=(-0.7252,0.3702,1.0752) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,0.1302,0.9702) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,-2.0810,-0.3798) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2481,-2.8892,2.4745) mvmt=(-0.2169,0.0085,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5502,4.5183,-0.5300) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5502,4.5183,-0.5500) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.050,6.982,93.470) lpos=(-10.550,4.518,-0.550) lprev=(-10.473,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5502,4.5183,-0.5500) mvmt=(-0.0773,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=(-0.7252,0.3702,1.0752) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,0.1302,0.9702) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,-2.0810,-0.3798) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2481,-2.8892,2.4745) mvmt=(-0.2169,0.0085,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5502,4.5183,-0.5300) mvmt=(-0.0773,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5502,4.3154,-0.7599) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.050,7.185,93.260) lpos=(-10.550,4.315,-0.760) lprev=(-10.473,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7252,0.1674,0.8653) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,-0.0726,0.7603) mvmt=(-0.0773,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,-2.2839,-0.5897) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5502,4.3154,-0.7399) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5502,4.3154,-1.5099) mvmt=(-0.0773,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.050,7.185,92.510) lpos=(-10.550,4.315,-1.510) lprev=(-10.473,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7252,0.1674,0.1153) mvmt=(-0.0773,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,-0.0726,0.0103) mvmt=(-0.0773,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2498,-0.0726,0.0103) out=(0.2498,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5502,4.3154,-0.7599) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.050,7.185,93.260) lpos=(-10.550,4.315,-0.760) lprev=(-10.473,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7252,0.1674,0.8653) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,-0.0726,0.7603) mvmt=(-0.0773,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2498,-2.2839,-0.5897) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5502,4.3154,-0.7399) mvmt=(-0.0773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6495,4.5207,-0.5475) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.150,6.979,93.472) lpos=(-10.650,4.521,-0.548) lprev=(-10.550,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6495,4.5207,-0.5475) mvmt=(-0.0993,0.2053,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=(-0.8245,0.3727,1.0777) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,0.1327,0.9727) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,-2.0786,-0.3773) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2069,-2.9796,2.4770) mvmt=(-0.2278,-0.0108,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6495,4.5207,-0.5275) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6495,4.5207,-0.5475) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.150,6.979,93.472) lpos=(-10.650,4.521,-0.548) lprev=(-10.550,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6495,4.5207,-0.5475) mvmt=(-0.0993,0.2053,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=(-0.8245,0.3727,1.0777) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,0.1327,0.9727) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,-2.0786,-0.3773) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2069,-2.9796,2.4770) mvmt=(-0.2278,-0.0108,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6495,4.5207,-0.5275) mvmt=(-0.0993,0.2053,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6495,4.3154,-0.7599) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.150,7.185,93.260) lpos=(-10.650,4.315,-0.760) lprev=(-10.550,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8245,0.1674,0.8653) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,-0.0726,0.7603) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,-2.2839,-0.5897) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6495,4.3154,-0.7399) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6495,4.3154,-1.5099) mvmt=(-0.0993,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.150,7.185,92.510) lpos=(-10.650,4.315,-1.510) lprev=(-10.550,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8245,0.1674,0.1153) mvmt=(-0.0993,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,-0.0726,0.0103) mvmt=(-0.0993,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1505,-0.0726,0.0103) out=(0.1505,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6495,4.3154,-0.7599) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.150,7.185,93.260) lpos=(-10.650,4.315,-0.760) lprev=(-10.550,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8245,0.1674,0.8653) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,-0.0726,0.7603) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1505,-2.2839,-0.5897) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6495,4.3154,-0.7399) mvmt=(-0.0993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7471,4.5172,-0.5512) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,6.983,93.469) lpos=(-10.747,4.517,-0.551) lprev=(-10.650,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7471,4.5172,-0.5512) mvmt=(-0.0976,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=(-0.9221,0.3691,1.0740) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,0.1291,0.9690) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,-2.0822,-0.3810) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1719,-3.0707,2.4733) mvmt=(-0.2238,-0.0106,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7471,4.5172,-0.5312) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7471,4.5172,-0.5512) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,6.983,93.469) lpos=(-10.747,4.517,-0.551) lprev=(-10.650,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7471,4.5172,-0.5512) mvmt=(-0.0976,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=(-0.9221,0.3691,1.0740) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,0.1291,0.9690) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,-2.0822,-0.3810) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1719,-3.0707,2.4733) mvmt=(-0.2238,-0.0106,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7471,4.5172,-0.5312) mvmt=(-0.0976,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7471,4.3154,-0.7599) mvmt=(-0.0976,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,7.185,93.260) lpos=(-10.747,4.315,-0.760) lprev=(-10.650,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9221,0.1674,0.8653) mvmt=(-0.0976,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,-0.0726,0.7603) mvmt=(-0.0976,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,-2.2839,-0.5897) mvmt=(-0.0976,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7471,4.3154,-0.7399) mvmt=(-0.0976,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7471,4.3154,-1.5099) mvmt=(-0.0976,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,7.185,92.510) lpos=(-10.747,4.315,-1.510) lprev=(-10.650,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9221,0.1674,0.1153) mvmt=(-0.0976,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,-0.0726,0.0103) mvmt=(-0.0976,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0529,-0.0726,0.0103) out=(0.0529,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7471,4.3154,-0.7599) mvmt=(-0.0976,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,7.185,93.260) lpos=(-10.747,4.315,-0.760) lprev=(-10.650,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9221,0.1674,0.8653) mvmt=(-0.0976,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,-0.0726,0.7603) mvmt=(-0.0976,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0529,-2.2839,-0.5897) mvmt=(-0.0976,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7471,4.3154,-0.7399) mvmt=(-0.0976,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8474,4.5228,-0.5454) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.347,6.977,93.475) lpos=(-10.847,4.523,-0.545) lprev=(-10.747,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8474,4.5228,-0.5454) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0224,0.3747,1.0798) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,0.1347,0.9748) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,-2.0765,-0.3752) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8474,4.5228,-0.5254) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8474,4.5228,-0.5454) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.347,6.977,93.475) lpos=(-10.847,4.523,-0.545) lprev=(-10.747,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8474,4.5228,-0.5454) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0224,0.3747,1.0798) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,0.1347,0.9748) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,-2.0765,-0.3752) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8474,4.5228,-0.5254) mvmt=(-0.1003,0.2073,0.2145) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8474,4.3154,-0.7599) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.347,7.185,93.260) lpos=(-10.847,4.315,-0.760) lprev=(-10.747,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0224,0.1674,0.8653) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,-0.0726,0.7603) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,-2.2839,-0.5897) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8474,4.3154,-0.7399) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8474,4.3154,-1.5099) mvmt=(-0.1003,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.347,7.185,92.510) lpos=(-10.847,4.315,-1.510) lprev=(-10.747,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0224,0.1674,0.1153) mvmt=(-0.1003,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,-0.0726,0.0103) mvmt=(-0.1003,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0474,-0.0726,0.0103) out=(-0.0474,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8474,4.3154,-0.7599) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.347,7.185,93.260) lpos=(-10.847,4.315,-0.760) lprev=(-10.747,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0224,0.1674,0.8653) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,-0.0726,0.7603) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0474,-2.2839,-0.5897) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8474,4.3154,-0.7399) mvmt=(-0.1003,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9462,4.5197,-0.5486) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,6.980,93.471) lpos=(-10.946,4.520,-0.549) lprev=(-10.847,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9462,4.5197,-0.5486) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1212,0.3716,1.0766) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,0.1316,0.9716) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.0796,-0.3784) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.5197,-0.5286) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.5197,-0.5486) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,6.980,93.471) lpos=(-10.946,4.520,-0.549) lprev=(-10.847,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9462,4.5197,-0.5486) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1212,0.3716,1.0766) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,0.1316,0.9716) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.0796,-0.3784) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.5197,-0.5286) mvmt=(-0.0988,0.2042,0.2113) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3154,-0.7599) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,7.185,93.260) lpos=(-10.946,4.315,-0.760) lprev=(-10.847,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1212,0.1674,0.8653) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-0.0726,0.7603) mvmt=(-0.0988,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.2839,-0.5897) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3154,-0.7399) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3154,-1.5099) mvmt=(-0.0988,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,7.185,92.510) lpos=(-10.946,4.315,-1.510) lprev=(-10.847,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1212,0.1674,0.1153) mvmt=(-0.0988,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-0.0726,0.0103) mvmt=(-0.0988,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1462,-0.0726,0.0103) out=(-0.1462,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9462,4.3154,-0.7599) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,7.185,93.260) lpos=(-10.946,4.315,-0.760) lprev=(-10.847,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1212,0.1674,0.8653) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-0.0726,0.7603) mvmt=(-0.0988,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.2839,-0.5897) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3154,-0.7399) mvmt=(-0.0988,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0385,4.5063,-0.5624) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,6.994,93.458) lpos=(-11.039,4.506,-0.562) lprev=(-10.946,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0385,4.5063,-0.5624) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2135,0.3583,1.0628) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,0.1183,0.9578) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-2.0930,-0.3922) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.5063,-0.5424) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.5063,-0.5624) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,6.994,93.458) lpos=(-11.039,4.506,-0.562) lprev=(-10.946,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0385,4.5063,-0.5624) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2135,0.3583,1.0628) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,0.1183,0.9578) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-2.0930,-0.3922) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.5063,-0.5424) mvmt=(-0.0923,0.1909,0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.3154,-0.7599) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.185,93.260) lpos=(-11.039,4.315,-0.760) lprev=(-10.946,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2135,0.1674,0.8653) mvmt=(-0.0923,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-0.0726,0.7603) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-2.2839,-0.5897) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.3154,-0.7399) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.3154,-1.5099) mvmt=(-0.0923,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.185,92.510) lpos=(-11.039,4.315,-1.510) lprev=(-10.946,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2135,0.1674,0.1153) mvmt=(-0.0923,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-0.0726,0.0103) mvmt=(-0.0923,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2385,-0.0726,0.0103) out=(-0.2385,-0.0726,0.7603) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.0385,4.3154,-0.7599) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,7.185,93.260) lpos=(-11.039,4.315,-0.760) lprev=(-10.946,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2135,0.1674,0.8653) mvmt=(-0.0923,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-0.0726,0.7603) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-2.2839,-0.5897) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.3154,-0.7399) mvmt=(-0.0923,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1380,4.5210,-0.5472) mvmt=(-0.0995,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1380,4.5210,-0.5472) mvmt=(-0.0995,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.638,6.979,93.473) lpos=(-11.138,4.521,-0.547) lprev=(-11.039,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1380,4.5210,-0.5472) mvmt=(-0.0995,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3130,0.3730,1.0780) mvmt=(-0.0995,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3380,0.1330,0.9730) mvmt=(-0.0995,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3380,-2.0783,-0.3770) mvmt=(-0.0995,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1380,4.5210,-0.5272) mvmt=(-0.0995,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.638,6.979,93.473) lpos=(-11.138,4.521,-0.547) lprev=(-11.039,4.315,-0.760) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0385,4.5210,-0.5472) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,6.979,93.473) lpos=(-11.039,4.521,-0.547) lprev=(-11.039,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0385,4.5210,-0.5472) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2135,0.3730,1.0780) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,0.1330,0.9730) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-2.0783,-0.3770) mvmt=(-0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.5210,-0.5272) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.5210,-0.5472) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.539,6.979,93.473) lpos=(-11.039,4.521,-0.547) lprev=(-11.039,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0385,4.5210,-0.5472) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2135,0.3730,1.0780) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,0.1330,0.9730) mvmt=(0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2385,-2.0783,-0.3770) mvmt=(-0.0000,0.2056,0.2127) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0385,4.5210,-0.5272) mvmt=(0.0000,0.2056,0.2127) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9888,4.2128,-0.8661) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.287,93.154) lpos=(-10.989,4.213,-0.866) lprev=(-11.039,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1638,0.0647,0.7591) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1888,-0.1753,0.6541) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1888,-2.3866,-0.6959) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9888,4.2128,-0.8461) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9888,4.2128,-1.6161) mvmt=(0.0497,-0.1027,-0.8562) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.287,92.404) lpos=(-10.989,4.213,-1.616) lprev=(-11.039,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1638,0.0647,0.0091) mvmt=(0.0497,-0.1027,-0.8562) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1888,-0.1753,-0.0959) mvmt=(0.0497,-0.1027,-0.8562) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1888,-0.1753,-0.0959) out=(-0.1888,-0.1753,0.6541) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9888,4.2128,-0.8661) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.489,7.287,93.154) lpos=(-10.989,4.213,-0.866) lprev=(-11.039,4.315,-0.760) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1638,0.0647,0.7591) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1888,-0.1753,0.6541) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1888,-2.3866,-0.6959) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9888,4.2128,-0.8461) mvmt=(0.0497,-0.1027,-0.1062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9378,4.1072,-0.9753) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.438,7.393,93.045) lpos=(-10.938,4.107,-0.975) lprev=(-10.989,4.213,-0.866) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1128,-0.0409,0.6499) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1378,-0.2809,0.5449) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1378,-2.4921,-0.8051) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9378,4.1072,-0.9553) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9378,4.1072,-1.7253) mvmt=(0.0511,-0.1056,-0.8592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.438,7.393,92.295) lpos=(-10.938,4.107,-1.725) lprev=(-10.989,4.213,-0.866) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1128,-0.0409,-0.1001) mvmt=(0.0511,-0.1056,-0.8592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1378,-0.2809,-0.2051) mvmt=(0.0511,-0.1056,-0.8592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1378,-0.2809,-0.2051) out=(-0.1378,-0.2809,0.5449) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9378,4.1072,-0.9753) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.438,7.393,93.045) lpos=(-10.938,4.107,-0.975) lprev=(-10.989,4.213,-0.866) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1128,-0.0409,0.6499) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1378,-0.2809,0.5449) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1378,-2.4921,-0.8051) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9378,4.1072,-0.9553) mvmt=(0.0511,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8874,4.0031,-1.0830) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.387,7.497,92.937) lpos=(-10.887,4.003,-1.083) lprev=(-10.938,4.107,-0.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0624,-0.1449,0.5422) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0874,-0.3849,0.4372) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0874,-2.5962,-0.9128) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8874,4.0031,-1.0630) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8874,4.0031,-1.8330) mvmt=(0.0504,-0.1041,-0.8577) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.387,7.497,92.187) lpos=(-10.887,4.003,-1.833) lprev=(-10.938,4.107,-0.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0624,-0.1449,-0.2078) mvmt=(0.0504,-0.1041,-0.8577) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0874,-0.3849,-0.3128) mvmt=(0.0504,-0.1041,-0.8577) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0874,-0.3849,-0.3128) out=(-0.0874,-0.3849,0.4372) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8874,4.0031,-1.0830) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.387,7.497,92.937) lpos=(-10.887,4.003,-1.083) lprev=(-10.938,4.107,-0.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0624,-0.1449,0.5422) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0874,-0.3849,0.4372) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0874,-2.5962,-0.9128) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8874,4.0031,-1.0630) mvmt=(0.0504,-0.1041,-0.1077) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8405,3.9061,-1.1833) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.340,7.594,92.837) lpos=(-10.840,3.906,-1.183) lprev=(-10.887,4.003,-1.083) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0155,-0.2419,0.4419) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0405,-0.4819,0.3369) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0405,-2.6932,-1.0131) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8405,3.9061,-1.1633) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8405,3.9061,-1.9333) mvmt=(0.0469,-0.0970,-0.8503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.340,7.594,92.087) lpos=(-10.840,3.906,-1.933) lprev=(-10.887,4.003,-1.083) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0155,-0.2419,-0.3081) mvmt=(0.0469,-0.0970,-0.8503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0405,-0.4819,-0.4131) mvmt=(0.0469,-0.0970,-0.8503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0405,-0.4819,-0.4131) out=(-0.0405,-0.4819,0.3369) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.8405,3.9061,-1.1833) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.340,7.594,92.837) lpos=(-10.840,3.906,-1.183) lprev=(-10.887,4.003,-1.083) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0155,-0.2419,0.4419) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0405,-0.4819,0.3369) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0405,-2.6932,-1.0131) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8405,3.9061,-1.1633) mvmt=(0.0469,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7948,3.8117,-1.2810) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.688,92.739) lpos=(-10.795,3.812,-1.281) lprev=(-10.840,3.906,-1.183) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9698,-0.3364,0.3442) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0052,-0.5764,0.2392) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0052,-2.7876,-1.1108) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7948,3.8117,-1.2610) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7948,3.8117,-2.0310) mvmt=(0.0457,-0.0944,-0.8477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.688,91.989) lpos=(-10.795,3.812,-2.031) lprev=(-10.840,3.906,-1.183) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9698,-0.3364,-0.4058) mvmt=(0.0457,-0.0944,-0.8477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0052,-0.5764,-0.5108) mvmt=(0.0457,-0.0944,-0.8477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0052,-0.5764,-0.5108) out=(0.0052,-0.5764,0.2392) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7948,3.8117,-1.2810) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.688,92.739) lpos=(-10.795,3.812,-1.281) lprev=(-10.840,3.906,-1.183) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9698,-0.3364,0.3442) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0052,-0.5764,0.2392) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0052,-2.7876,-1.1108) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7948,3.8117,-1.2610) mvmt=(0.0457,-0.0944,-0.0977) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7451,3.7088,-1.3874) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.245,7.791,92.633) lpos=(-10.745,3.709,-1.387) lprev=(-10.795,3.812,-1.281) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9201,-0.4392,0.2378) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0549,-0.6792,0.1328) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0549,-2.8905,-1.2172) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7451,3.7088,-1.3674) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7451,3.7088,-2.1374) mvmt=(0.0498,-0.1028,-0.8564) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.245,7.791,91.883) lpos=(-10.745,3.709,-2.137) lprev=(-10.795,3.812,-1.281) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9201,-0.4392,-0.5122) mvmt=(0.0498,-0.1028,-0.8564) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0549,-0.6792,-0.6172) mvmt=(0.0498,-0.1028,-0.8564) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0549,-0.6792,-0.6172) out=(0.0549,-0.6792,0.1328) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7451,3.7088,-1.3874) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.245,7.791,92.633) lpos=(-10.745,3.709,-1.387) lprev=(-10.795,3.812,-1.281) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9201,-0.4392,0.2378) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0549,-0.6792,0.1328) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0549,-2.8905,-1.2172) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7451,3.7088,-1.3674) mvmt=(0.0498,-0.1028,-0.1064) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6936,3.6025,-1.4974) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.898,92.523) lpos=(-10.694,3.602,-1.497) lprev=(-10.745,3.709,-1.387) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8686,-0.5456,0.1278) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1064,-0.7856,0.0228) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1064,-2.9968,-1.3272) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6936,3.6025,-1.4774) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6936,3.6025,-2.2474) mvmt=(0.0515,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.898,91.773) lpos=(-10.694,3.602,-2.247) lprev=(-10.745,3.709,-1.387) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8686,-0.5456,-0.6222) mvmt=(0.0515,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1064,-0.7856,-0.7272) mvmt=(0.0515,-0.1064,-0.8601) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1064,-0.7856,-0.7272) out=(0.1064,-0.7856,0.0228) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6936,3.6025,-1.4974) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.194,7.898,92.523) lpos=(-10.694,3.602,-1.497) lprev=(-10.745,3.709,-1.387) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8686,-0.5456,0.1278) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1064,-0.7856,0.0228) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1064,-2.9968,-1.3272) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6936,3.6025,-1.4774) mvmt=(0.0515,-0.1064,-0.1101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6430,3.4978,-1.6057) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,8.002,92.414) lpos=(-10.643,3.498,-1.606) lprev=(-10.694,3.602,-1.497) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8180,-0.6502,0.0195) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1570,-0.8902,-0.0855) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1570,-3.1015,-1.4355) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6430,3.4978,-1.5857) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6430,3.4978,-2.3557) mvmt=(0.0506,-0.1046,-0.8582) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,8.002,91.664) lpos=(-10.643,3.498,-2.356) lprev=(-10.694,3.602,-1.497) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8180,-0.6502,-0.7305) mvmt=(0.0506,-0.1046,-0.8582) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1570,-0.8902,-0.8355) mvmt=(0.0506,-0.1046,-0.8582) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1570,-0.8902,-0.8355) out=(0.1570,-0.8902,-0.0855) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6430,3.4978,-1.6057) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,8.002,92.414) lpos=(-10.643,3.498,-1.606) lprev=(-10.694,3.602,-1.497) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8180,-0.6502,0.0195) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1570,-0.8902,-0.0855) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1570,-3.1015,-1.4355) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6430,3.4978,-1.5857) mvmt=(0.0506,-0.1046,-0.1082) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5936,3.3956,-1.7114) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.094,8.104,92.309) lpos=(-10.594,3.396,-1.711) lprev=(-10.643,3.498,-1.606) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7686,-0.7524,-0.0862) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2065,-0.9924,-0.1912) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2065,-3.2037,-1.5412) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5936,3.3956,-1.6914) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5936,3.3956,-2.4614) mvmt=(0.0494,-0.1022,-0.8557) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.094,8.104,91.559) lpos=(-10.594,3.396,-2.461) lprev=(-10.643,3.498,-1.606) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7686,-0.7524,-0.8362) mvmt=(0.0494,-0.1022,-0.8557) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2065,-0.9924,-0.9412) mvmt=(0.0494,-0.1022,-0.8557) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2065,-0.9924,-0.9412) out=(0.2065,-0.9924,-0.1912) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.5936,3.3956,-1.7114) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.094,8.104,92.309) lpos=(-10.594,3.396,-1.711) lprev=(-10.643,3.498,-1.606) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7686,-0.7524,-0.0862) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2065,-0.9924,-0.1912) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2065,-3.2037,-1.5412) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5936,3.3956,-1.6914) mvmt=(0.0494,-0.1022,-0.1057) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5455,3.2963,-1.8141) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.046,8.204,92.206) lpos=(-10.546,3.296,-1.814) lprev=(-10.594,3.396,-1.711) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7205,-0.8517,-0.1889) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2545,-1.0917,-0.2939) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2545,-3.3030,-1.6439) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5455,3.2963,-1.7941) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5455,3.2963,-2.5641) mvmt=(0.0480,-0.0993,-0.8527) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.046,8.204,91.456) lpos=(-10.546,3.296,-2.564) lprev=(-10.594,3.396,-1.711) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7205,-0.8517,-0.9389) mvmt=(0.0480,-0.0993,-0.8527) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2545,-1.0917,-1.0439) mvmt=(0.0480,-0.0993,-0.8527) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2545,-1.0917,-1.0439) out=(0.2545,-1.0917,-0.2939) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5455,3.2963,-1.8141) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.046,8.204,92.206) lpos=(-10.546,3.296,-1.814) lprev=(-10.594,3.396,-1.711) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7205,-0.8517,-0.1889) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2545,-1.0917,-0.2939) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2545,-3.3030,-1.6439) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5455,3.2963,-1.7941) mvmt=(0.0480,-0.0993,-0.1027) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4963,3.1947,-1.9193) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.996,8.305,92.101) lpos=(-10.496,3.195,-1.919) lprev=(-10.546,3.296,-1.814) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6713,-0.9534,-0.2941) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3037,-1.1934,-0.3991) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3037,-3.4046,-1.7491) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4963,3.1947,-1.8993) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4963,3.1947,-2.6693) mvmt=(0.0492,-0.1017,-0.8552) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.4963,3.1947,-2.6693) out=(-10.4963,3.1947,-2.5700) delta=(0.0000,0.0000,0.0993) deltaMag=0.0993 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8676 dpPos=0.3807 dpMove=-0.7500 iDist=0.1324 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=(140.996,8.305,91.351) lpos=(-10.496,3.195,-2.669) lprev=(-10.546,3.296,-1.814) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.4963,3.1947,-2.5700) mvmt=(0.0492,-0.1017,-0.7559) collide=False insertType=0 objState=0x303 winterp=0.8676 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.996,8.305,91.450) lpos=(-10.496,3.195,-2.570) lprev=(-10.546,3.296,-1.814) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6713,-0.9534,-0.9448) mvmt=(0.0492,-0.1017,-0.7559) collide=False insertType=0 objState=0x303 winterp=0.8676 return=-1 +[push-back-disp] site=dispatch center=(0.3037,-1.1934,-1.0498) mvmt=(0.0492,-0.1017,-0.7559) collide=False insertType=0 objState=0x303 winterp=0.8676 return=-1 +[push-back] site=adjust_sphere in=(0.3037,-1.1934,-1.0498) out=(0.3037,-1.1934,-0.3991) delta=(0.0000,0.0000,0.6507) deltaMag=0.6507 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.8676->0.0000 dpPos=0.0277 dpMove=-0.4523 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.4963,3.1947,-1.9193) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.996,8.305,92.101) lpos=(-10.496,3.195,-1.919) lprev=(-10.546,3.296,-1.814) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6713,-0.9534,-0.2941) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3037,-1.1934,-0.3991) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3037,-3.4046,-1.7491) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4963,3.1947,-1.8993) mvmt=(0.0492,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4464,3.0913,-2.0262) mvmt=(0.0500,-0.1033,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,8.409,91.994) lpos=(-10.446,3.091,-2.026) lprev=(-10.496,3.195,-1.919) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6214,-1.0567,-0.4010) mvmt=(0.0500,-0.1033,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3537,-1.2967,-0.5060) mvmt=(0.0500,-0.1033,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3537,-3.5080,-1.8560) mvmt=(0.0500,-0.1033,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4464,3.0913,-2.0062) mvmt=(0.0500,-0.1033,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4464,3.0913,-2.7762) mvmt=(0.0500,-0.1033,-0.8569) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.4464,3.0913,-2.7762) out=(-10.4464,3.0913,-2.5700) delta=(0.0000,0.0000,0.2062) deltaMag=0.2062 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7251 dpPos=0.2738 dpMove=-0.7500 iDist=0.2749 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=(140.946,8.409,91.244) lpos=(-10.446,3.091,-2.776) lprev=(-10.496,3.195,-1.919) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.4464,3.0913,-2.5700) mvmt=(0.0500,-0.1033,-0.6507) collide=False insertType=0 objState=0x303 winterp=0.7251 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,8.409,91.450) lpos=(-10.446,3.091,-2.570) lprev=(-10.496,3.195,-1.919) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6214,-1.0567,-0.9448) mvmt=(0.0500,-0.1033,-0.6507) collide=False insertType=0 objState=0x303 winterp=0.7251 return=-1 +[push-back] site=adjust_sphere in=(-0.6214,-1.0567,-0.9448) out=(-0.6214,-1.0567,-0.0279) delta=(0.0000,0.0000,0.9169) deltaMag=0.9169 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.7251->-0.4974 dpPos=-0.1683 dpMove=-0.3845 iDist=1.6861 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=(-10.4464,3.0913,-1.6531) mvmt=(0.0500,-0.1033,0.2662) collide=False insertType=0 objState=0x303 winterp=-0.4974 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,8.409,92.367) lpos=(-10.446,3.091,-1.653) lprev=(-10.496,3.195,-1.919) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6214,-1.0567,-0.0279) mvmt=(0.0500,-0.1033,0.2662) collide=False insertType=0 objState=0x303 winterp=-0.4974 return=-1 +[push-back-disp] site=dispatch center=(0.3537,-1.2967,-0.1329) mvmt=(0.0500,-0.1033,0.2662) collide=False insertType=0 objState=0x303 winterp=-0.4974 return=-1 +[push-back-disp] site=dispatch center=(0.3537,-3.5080,-1.4829) mvmt=(0.0500,-0.1033,0.2662) collide=False insertType=0 objState=0x303 winterp=-0.4974 return=-1 +[push-back-disp] site=dispatch center=(1.6014,-3.3535,1.3714) mvmt=(0.1147,0.0054,0.2662) collide=False insertType=0 objState=0x303 winterp=-0.4974 return=-1 +[push-back-disp] site=dispatch center=(-10.4464,3.0913,-1.6331) mvmt=(0.0500,-0.1033,0.2662) collide=False insertType=0 objState=0x303 winterp=-0.4974 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3958,2.9832,-1.7612) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,8.517,92.259) lpos=(-10.396,2.983,-1.761) lprev=(-10.446,3.091,-1.653) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5708,-1.1648,-0.1360) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4042,-1.4048,-0.2410) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4042,-3.6161,-1.5910) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,2.9832,-1.7412) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,2.9832,-2.5112) mvmt=(0.0505,-0.1081,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,8.517,91.509) lpos=(-10.396,2.983,-2.511) lprev=(-10.446,3.091,-1.653) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5708,-1.1648,-0.8860) mvmt=(0.0505,-0.1081,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5708,-1.1648,-0.8860) out=(-0.5708,-1.1648,-0.1360) 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.3958,2.9832,-1.7612) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.896,8.517,92.259) lpos=(-10.396,2.983,-1.761) lprev=(-10.446,3.091,-1.653) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5708,-1.1648,-0.1360) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4042,-1.4048,-0.2410) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4042,-3.6161,-1.5910) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3958,2.9832,-1.7412) mvmt=(0.0505,-0.1081,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3458,2.8763,-1.8682) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,8.624,92.152) lpos=(-10.346,2.876,-1.868) lprev=(-10.396,2.983,-1.761) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5208,-1.2718,-0.2430) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4542,-1.5118,-0.3480) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4542,-3.7230,-1.6980) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3458,2.8763,-1.8482) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3458,2.8763,-2.6182) mvmt=(0.0500,-0.1069,-0.8569) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.3458,2.8763,-2.6182) out=(-10.3458,2.8763,-2.5700) delta=(0.0000,0.0000,0.0482) deltaMag=0.0482 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9358 dpPos=0.4318 dpMove=-0.7500 iDist=0.0642 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.846,8.624,91.402) lpos=(-10.346,2.876,-2.618) lprev=(-10.396,2.983,-1.761) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.3458,2.8763,-2.5700) mvmt=(0.0500,-0.1069,-0.8088) collide=False insertType=0 objState=0x303 winterp=0.9358 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,8.624,91.450) lpos=(-10.346,2.876,-2.570) lprev=(-10.396,2.983,-1.761) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5208,-1.2718,-0.9448) mvmt=(0.0500,-0.1069,-0.8088) collide=False insertType=0 objState=0x303 winterp=0.9358 return=-1 +[push-back] site=adjust_sphere in=(-0.5208,-1.2718,-0.9448) out=(-0.5208,-1.2718,-0.2430) delta=(0.0000,0.0000,0.7018) deltaMag=0.7018 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.9358->0.0000 dpPos=-0.0163 dpMove=-0.4963 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=(-10.3458,2.8763,-1.8682) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,8.624,92.152) lpos=(-10.346,2.876,-1.868) lprev=(-10.396,2.983,-1.761) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5208,-1.2718,-0.2430) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4542,-1.5118,-0.3480) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4542,-3.7230,-1.6980) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3458,2.8763,-1.8482) mvmt=(0.0500,-0.1069,-0.1069) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2951,2.7677,-1.9767) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.795,8.732,92.043) lpos=(-10.295,2.768,-1.977) lprev=(-10.346,2.876,-1.868) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4701,-1.3803,-0.3515) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5049,-1.6203,-0.4565) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5049,-3.8316,-1.8065) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2951,2.7677,-1.9567) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2951,2.7677,-2.7267) mvmt=(0.0507,-0.1085,-0.8585) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2951,2.7677,-2.7267) out=(-10.2951,2.7677,-2.5700) delta=(0.0000,0.0000,0.1567) deltaMag=0.1567 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7911 dpPos=0.3233 dpMove=-0.7500 iDist=0.2089 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.795,8.732,91.293) lpos=(-10.295,2.768,-2.727) lprev=(-10.346,2.876,-1.868) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.2951,2.7677,-2.5700) mvmt=(0.0507,-0.1085,-0.7018) collide=False insertType=0 objState=0x303 winterp=0.7911 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.795,8.732,91.450) lpos=(-10.295,2.768,-2.570) lprev=(-10.346,2.876,-1.868) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4701,-1.3803,-0.9448) mvmt=(0.0507,-0.1085,-0.7018) collide=False insertType=0 objState=0x303 winterp=0.7911 return=-1 +[push-back] site=adjust_sphere in=(-0.4701,-1.3803,-0.9448) out=(-0.4701,-1.3803,-0.3515) delta=(0.0000,0.0000,0.5933) deltaMag=0.5933 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.7911->-0.0000 dpPos=0.0605 dpMove=-0.4195 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=(-10.2951,2.7677,-1.9767) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.795,8.732,92.043) lpos=(-10.295,2.768,-1.977) lprev=(-10.346,2.876,-1.868) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4701,-1.3803,-0.3515) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5049,-1.6203,-0.4565) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5049,-3.8316,-1.8065) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2951,2.7677,-1.9567) mvmt=(0.0507,-0.1085,-0.1085) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2439,2.6582,-2.0862) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.744,8.842,91.934) lpos=(-10.244,2.658,-2.086) lprev=(-10.295,2.768,-1.977) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4189,-1.4898,-0.4610) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5561,-1.7298,-0.5660) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2439,2.6582,-2.0662) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2439,2.6582,-2.8362) mvmt=(0.0512,-0.1095,-0.8595) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2439,2.6582,-2.8362) out=(-10.2439,2.6582,-2.5700) delta=(0.0000,0.0000,0.2662) deltaMag=0.2662 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6451 dpPos=0.2138 dpMove=-0.7500 iDist=0.3549 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.744,8.842,91.184) lpos=(-10.244,2.658,-2.836) lprev=(-10.295,2.768,-1.977) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.2439,2.6582,-2.5700) mvmt=(0.0512,-0.1095,-0.5933) collide=False insertType=0 objState=0x303 winterp=0.6451 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.744,8.842,91.450) lpos=(-10.244,2.658,-2.570) lprev=(-10.295,2.768,-1.977) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4189,-1.4898,-0.9448) mvmt=(0.0512,-0.1095,-0.5933) collide=False insertType=0 objState=0x303 winterp=0.6451 return=-1 +[push-back] site=adjust_sphere in=(-0.4189,-1.4898,-0.9448) out=(-0.4189,-1.4898,-0.4610) delta=(0.0000,0.0000,0.4838) deltaMag=0.4838 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.6451->0.0000 dpPos=0.1379 dpMove=-0.3421 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=(-10.2439,2.6582,-2.0862) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.744,8.842,91.934) lpos=(-10.244,2.658,-2.086) lprev=(-10.295,2.768,-1.977) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4189,-1.4898,-0.4610) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5561,-1.7298,-0.5660) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2439,2.6582,-2.0662) mvmt=(0.0512,-0.1095,-0.1095) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3446,2.8735,-1.8709) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,8.626,92.149) lpos=(-10.345,2.874,-1.871) lprev=(-10.244,2.658,-2.086) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5196,-1.2745,-0.2457) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4554,-1.5145,-0.3507) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,2.8735,-1.8509) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,2.8735,-2.6209) mvmt=(-0.1006,0.2153,-0.5347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.3446,2.8735,-2.6209) out=(-10.3446,2.8735,-2.5700) delta=(0.0000,0.0000,0.0509) deltaMag=0.0509 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9321 dpPos=0.4291 dpMove=-0.7500 iDist=0.0679 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.845,8.626,91.399) lpos=(-10.345,2.874,-2.621) lprev=(-10.244,2.658,-2.086) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.3446,2.8735,-2.5700) mvmt=(-0.1006,0.2153,-0.4838) collide=False insertType=0 objState=0x303 winterp=0.9321 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,8.626,91.450) lpos=(-10.345,2.874,-2.570) lprev=(-10.244,2.658,-2.086) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5196,-1.2745,-0.9448) mvmt=(-0.1006,0.2153,-0.4838) collide=False insertType=0 objState=0x303 winterp=0.9321 return=-1 +[push-back] site=adjust_sphere in=(-0.5196,-1.2745,-0.9448) out=(-0.5196,-1.2745,-0.2457) delta=(0.0000,0.0000,0.6991) deltaMag=0.6991 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.9321->-0.0000 dpPos=-0.0143 dpMove=-0.4943 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=(-10.3446,2.8735,-1.8709) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,8.626,92.149) lpos=(-10.345,2.874,-1.871) lprev=(-10.244,2.658,-2.086) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5196,-1.2745,-0.2457) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4554,-1.5145,-0.3507) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,2.8735,-1.8509) mvmt=(-0.1006,0.2153,0.2153) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4429,3.0839,-1.6605) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,8.416,92.359) lpos=(-10.443,3.084,-1.661) lprev=(-10.345,2.874,-1.871) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6179,-1.0642,-0.0353) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3571,-1.3042,-0.1403) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3571,-3.5154,-1.4903) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4429,3.0839,-1.6405) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4429,3.0839,-2.4105) mvmt=(-0.0983,0.2104,-0.5396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,8.416,91.609) lpos=(-10.443,3.084,-2.411) lprev=(-10.345,2.874,-1.871) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6179,-1.0642,-0.7853) mvmt=(-0.0983,0.2104,-0.5396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6179,-1.0642,-0.7853) out=(-0.6179,-1.0642,-0.0353) 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.4429,3.0839,-1.6605) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,8.416,92.359) lpos=(-10.443,3.084,-1.661) lprev=(-10.345,2.874,-1.871) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6179,-1.0642,-0.0353) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3571,-1.3042,-0.1403) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3571,-3.5154,-1.4903) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4429,3.0839,-1.6405) mvmt=(-0.0983,0.2104,0.2104) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5452,3.3029,-1.4415) mvmt=(-0.1024,0.2191,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.045,8.197,92.579) lpos=(-10.545,3.303,-1.441) lprev=(-10.443,3.084,-1.661) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7202,-0.8451,0.1837) mvmt=(-0.1024,0.2191,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2548,-1.0851,0.0787) mvmt=(-0.1024,0.2191,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2548,-3.2964,-1.2713) mvmt=(-0.1024,0.2191,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5452,3.3029,-1.4215) mvmt=(-0.1024,0.2191,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5452,3.3029,-2.1915) mvmt=(-0.1024,0.2191,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.045,8.197,91.829) lpos=(-10.545,3.303,-2.191) lprev=(-10.443,3.084,-1.661) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7202,-0.8451,-0.5663) mvmt=(-0.1024,0.2191,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2548,-1.0851,-0.6713) mvmt=(-0.1024,0.2191,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2548,-1.0851,-0.6713) out=(0.2548,-1.0851,-0.2871) delta=(0.0000,0.0000,0.3842) deltaMag=0.3842 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4877 dpPos=0.2130 dpMove=-0.5213 iDist=0.5123 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.5452,3.3029,-1.8073) mvmt=(-0.1024,0.2191,-0.1467) collide=False insertType=0 objState=0x303 winterp=0.4877 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.045,8.197,92.213) lpos=(-10.545,3.303,-1.807) lprev=(-10.443,3.084,-1.661) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7202,-0.8451,-0.1821) mvmt=(-0.1024,0.2191,-0.1467) collide=False insertType=0 objState=0x303 winterp=0.4877 return=-1 +[push-back-disp] site=dispatch center=(0.2548,-1.0851,-0.2871) mvmt=(-0.1024,0.2191,-0.1467) collide=False insertType=0 objState=0x303 winterp=0.4877 return=-1 +[push-back-disp] site=dispatch center=(0.2548,-3.2964,-1.6371) mvmt=(-0.1024,0.2191,-0.1467) collide=False insertType=0 objState=0x303 winterp=0.4877 return=-1 +[push-back-disp] site=dispatch center=(-10.5452,3.3029,-1.7873) mvmt=(-0.1024,0.2191,-0.1467) collide=False insertType=0 objState=0x303 winterp=0.4877 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6367,3.4921,-1.6116) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,8.008,92.408) lpos=(-10.637,3.492,-1.612) lprev=(-10.545,3.303,-1.807) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8117,-0.6560,0.0136) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1633,-0.8960,-0.0914) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1633,-3.1072,-1.4414) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1581,-3.3714,1.4129) mvmt=(-0.2099,-0.0100,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6367,3.4921,-1.5916) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6367,3.4921,-2.3616) mvmt=(-0.0915,0.1891,-0.5544) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,8.008,91.658) lpos=(-10.637,3.492,-2.362) lprev=(-10.545,3.303,-1.807) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8117,-0.6560,-0.7364) mvmt=(-0.0915,0.1891,-0.5544) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1633,-0.8960,-0.8414) mvmt=(-0.0915,0.1891,-0.5544) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1633,-0.8960,-0.8414) out=(0.1633,-0.8960,-0.0914) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.6367,3.4921,-1.6116) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,8.008,92.408) lpos=(-10.637,3.492,-1.612) lprev=(-10.545,3.303,-1.807) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8117,-0.6560,0.0136) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1633,-0.8960,-0.0914) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1633,-3.1072,-1.4414) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1581,-3.3714,1.4129) mvmt=(-0.2099,-0.0100,0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6367,3.4921,-1.5916) mvmt=(-0.0915,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7383,3.7019,-1.3945) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.238,7.798,92.625) lpos=(-10.738,3.702,-1.395) lprev=(-10.637,3.492,-1.612) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9133,-0.4461,0.2307) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0618,-0.6861,0.1257) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0618,-2.8974,-1.2243) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9252,-3.3824,1.6300) mvmt=(-0.2329,-0.0110,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7383,3.7019,-1.3745) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7383,3.7019,-2.1445) mvmt=(-0.1015,0.2099,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.238,7.798,91.875) lpos=(-10.738,3.702,-2.145) lprev=(-10.637,3.492,-1.612) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9133,-0.4461,-0.5193) mvmt=(-0.1015,0.2099,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0618,-0.6861,-0.6243) mvmt=(-0.1015,0.2099,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0618,-0.6861,-0.6243) out=(0.0618,-0.6861,0.1257) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.7383,3.7019,-1.3945) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.238,7.798,92.625) lpos=(-10.738,3.702,-1.395) lprev=(-10.637,3.492,-1.612) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9133,-0.4461,0.2307) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0618,-0.6861,0.1257) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0618,-2.8974,-1.2243) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9252,-3.3824,1.6300) mvmt=(-0.2329,-0.0110,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7383,3.7019,-1.3745) mvmt=(-0.1015,0.2099,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8333,3.8985,-1.1912) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.602,92.829) lpos=(-10.833,3.898,-1.191) lprev=(-10.738,3.702,-1.395) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0083,-0.2496,0.4340) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0333,-0.4896,0.3290) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0333,-2.7008,-1.0210) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8333,3.8985,-1.1712) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8333,3.8985,-1.9412) mvmt=(-0.0951,0.1966,-0.5467) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.602,92.079) lpos=(-10.833,3.898,-1.941) lprev=(-10.738,3.702,-1.395) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0083,-0.2496,-0.3160) mvmt=(-0.0951,0.1966,-0.5467) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0333,-0.4896,-0.4210) mvmt=(-0.0951,0.1966,-0.5467) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0333,-0.4896,-0.4210) out=(-0.0333,-0.4896,0.3290) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8333,3.8985,-1.1912) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.602,92.829) lpos=(-10.833,3.898,-1.191) lprev=(-10.738,3.702,-1.395) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0083,-0.2496,0.4340) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0333,-0.4896,0.3290) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0333,-2.7008,-1.0210) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8333,3.8985,-1.1712) mvmt=(-0.0951,0.1966,0.2033) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9337,4.1059,-0.9766) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,7.394,93.043) lpos=(-10.934,4.106,-0.977) lprev=(-10.833,3.898,-1.191) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1087,-0.0421,0.6486) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-0.2821,0.5436) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-2.4934,-0.8064) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.1059,-0.9566) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.1059,-1.7266) mvmt=(-0.1004,0.2074,-0.5354) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,7.394,92.293) lpos=(-10.934,4.106,-1.727) lprev=(-10.833,3.898,-1.191) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1087,-0.0421,-0.1014) mvmt=(-0.1004,0.2074,-0.5354) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-0.2821,-0.2064) mvmt=(-0.1004,0.2074,-0.5354) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1337,-0.2821,-0.2064) out=(-0.1337,-0.2821,0.5436) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.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.9337,4.1059,-0.9766) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.434,7.394,93.043) lpos=(-10.934,4.106,-0.977) lprev=(-10.833,3.898,-1.191) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1087,-0.0421,0.6486) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-0.2821,0.5436) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1337,-2.4934,-0.8064) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9337,4.1059,-0.9566) mvmt=(-0.1004,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0338,4.3129,-0.7625) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.187,93.257) lpos=(-11.034,4.313,-0.762) lprev=(-10.934,4.106,-0.977) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2088,0.1648,0.8627) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-0.0752,0.7577) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.2864,-0.5923) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.3129,-0.7425) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.3129,-1.5125) mvmt=(-0.1001,0.2070,-0.5359) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.187,92.507) lpos=(-11.034,4.313,-1.512) lprev=(-10.934,4.106,-0.977) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2088,0.1648,0.1127) mvmt=(-0.1001,0.2070,-0.5359) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-0.0752,0.0077) mvmt=(-0.1001,0.2070,-0.5359) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2338,-0.0752,0.0077) out=(-0.2338,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0338,4.3129,-0.7625) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,7.187,93.257) lpos=(-11.034,4.313,-0.762) lprev=(-10.934,4.106,-0.977) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2088,0.1648,0.8627) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-0.0752,0.7577) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.2864,-0.5923) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.3129,-0.7425) mvmt=(-0.1001,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1322,4.5164,-0.5520) mvmt=(-0.0984,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1322,4.5164,-0.5520) mvmt=(-0.0984,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,6.984,93.468) lpos=(-11.132,4.516,-0.552) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1322,4.5164,-0.5520) mvmt=(-0.0984,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3072,0.3683,1.0732) mvmt=(-0.0984,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3322,0.1283,0.9682) mvmt=(-0.0984,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3322,-2.0829,-0.3818) mvmt=(-0.0984,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1322,4.5164,-0.5320) mvmt=(-0.0984,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,6.984,93.468) lpos=(-11.132,4.516,-0.552) lprev=(-11.034,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5164,-0.5520) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,6.984,93.468) lpos=(-11.034,4.516,-0.552) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5164,-0.5520) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2088,0.3683,1.0732) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,0.1283,0.9682) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.0829,-0.3818) mvmt=(-0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5164,-0.5320) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5164,-0.5520) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,6.984,93.468) lpos=(-11.034,4.516,-0.552) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5164,-0.5520) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2088,0.3683,1.0732) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,0.1283,0.9682) mvmt=(0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.0829,-0.3818) mvmt=(-0.0000,0.2035,0.2105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5164,-0.5320) mvmt=(0.0000,0.2035,0.2105) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1330,4.5181,-0.5503) mvmt=(-0.0992,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1330,4.5181,-0.5503) mvmt=(-0.0992,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.633,6.982,93.470) lpos=(-11.133,4.518,-0.550) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1330,4.5181,-0.5503) mvmt=(-0.0992,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=(-1.3080,0.3700,1.0749) mvmt=(-0.0992,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3330,0.1300,0.9699) mvmt=(-0.0992,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3330,-2.0813,-0.3801) mvmt=(-0.0992,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1330,4.5181,-0.5303) mvmt=(-0.0992,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.633,6.982,93.470) lpos=(-11.133,4.518,-0.550) lprev=(-11.034,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5181,-0.5503) mvmt=(0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,6.982,93.470) lpos=(-11.034,4.518,-0.550) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5181,-0.5503) mvmt=(0.0000,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=(-1.2088,0.3700,1.0749) mvmt=(0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,0.1300,0.9699) mvmt=(0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.0813,-0.3801) mvmt=(-0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5181,-0.5303) mvmt=(0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5181,-0.5503) mvmt=(0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,6.982,93.470) lpos=(-11.034,4.518,-0.550) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5181,-0.5503) mvmt=(0.0000,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=(-1.2088,0.3700,1.0749) mvmt=(0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,0.1300,0.9699) mvmt=(0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.0813,-0.3801) mvmt=(-0.0000,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5181,-0.5303) mvmt=(0.0000,0.2052,0.2122) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1315,4.5149,-0.5535) mvmt=(-0.0977,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1315,4.5149,-0.5535) mvmt=(-0.0977,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,6.985,93.466) lpos=(-11.132,4.515,-0.554) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1315,4.5149,-0.5535) mvmt=(-0.0977,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=(-1.3065,0.3669,1.0717) mvmt=(-0.0977,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3315,0.1269,0.9667) mvmt=(-0.0977,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3315,-2.0844,-0.3833) mvmt=(-0.0977,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1315,4.5149,-0.5335) mvmt=(-0.0977,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.632,6.985,93.466) lpos=(-11.132,4.515,-0.554) lprev=(-11.034,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5149,-0.5535) mvmt=(0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,6.985,93.466) lpos=(-11.034,4.515,-0.554) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5149,-0.5535) mvmt=(0.0000,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=(-1.2088,0.3669,1.0717) mvmt=(0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,0.1269,0.9667) mvmt=(0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.0844,-0.3833) mvmt=(-0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5149,-0.5335) mvmt=(0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5149,-0.5535) mvmt=(0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.534,6.985,93.466) lpos=(-11.034,4.515,-0.554) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0338,4.5149,-0.5535) mvmt=(0.0000,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=(-1.2088,0.3669,1.0717) mvmt=(0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,0.1269,0.9667) mvmt=(0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2338,-2.0844,-0.3833) mvmt=(-0.0000,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0338,4.5149,-0.5335) mvmt=(0.0000,0.2020,0.2090) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1121,4.5287,-0.5393) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,6.971,93.481) lpos=(-11.112,4.529,-0.539) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1121,4.5287,-0.5393) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.3806,1.0859) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,0.1406,0.9809) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.0706,-0.3691) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5287,-0.5193) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5287,-0.5393) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,6.971,93.481) lpos=(-11.112,4.529,-0.539) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1121,4.5287,-0.5393) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.3806,1.0859) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,0.1406,0.9809) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.0706,-0.3691) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5287,-0.5193) mvmt=(-0.0783,0.2158,0.2232) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3129,-0.7625) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,7.187,93.257) lpos=(-11.112,4.313,-0.762) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2871,0.1648,0.8627) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-0.0752,0.7577) mvmt=(-0.0783,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.2864,-0.5923) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3129,-0.7425) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3129,-1.5125) mvmt=(-0.0783,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,7.187,92.507) lpos=(-11.112,4.313,-1.512) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2871,0.1648,0.1127) mvmt=(-0.0783,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-0.0752,0.0077) mvmt=(-0.0783,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3121,-0.0752,0.0077) out=(-0.3121,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.3129,-0.7625) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,7.187,93.257) lpos=(-11.112,4.313,-0.762) lprev=(-11.034,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2871,0.1648,0.8627) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-0.0752,0.7577) mvmt=(-0.0783,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.2864,-0.5923) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3129,-0.7425) mvmt=(-0.0783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1499,4.5240,-0.5441) mvmt=(-0.0378,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1499,4.5240,-0.5441) mvmt=(-0.0378,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.650,6.976,93.476) lpos=(-11.150,4.524,-0.544) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1499,4.5240,-0.5441) mvmt=(-0.0378,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=(-1.3249,0.3760,1.0811) mvmt=(-0.0378,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3499,0.1360,0.9761) mvmt=(-0.0378,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3499,-2.0753,-0.3739) mvmt=(-0.0378,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1499,4.5240,-0.5241) mvmt=(-0.0378,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.650,6.976,93.476) lpos=(-11.150,4.524,-0.544) lprev=(-11.112,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1121,4.5240,-0.5441) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,6.976,93.476) lpos=(-11.112,4.524,-0.544) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1121,4.5240,-0.5441) mvmt=(0.0000,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=(-1.2871,0.3760,1.0811) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,0.1360,0.9761) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.0753,-0.3739) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5240,-0.5241) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5240,-0.5441) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,6.976,93.476) lpos=(-11.112,4.524,-0.544) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1121,4.5240,-0.5441) mvmt=(0.0000,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=(-1.2871,0.3760,1.0811) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,0.1360,0.9761) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.0753,-0.3739) mvmt=(0.0000,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5240,-0.5241) mvmt=(0.0000,0.2111,0.2184) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1127,4.5188,-0.5494) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,6.981,93.471) lpos=(-11.113,4.519,-0.549) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1127,4.5188,-0.5494) mvmt=(-0.0006,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.2878,0.3708,1.0758) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,0.1308,0.9708) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,-2.0805,-0.3792) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1127,4.5188,-0.5294) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1127,4.5188,-0.5494) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,6.981,93.471) lpos=(-11.113,4.519,-0.549) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1127,4.5188,-0.5494) mvmt=(-0.0006,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.2878,0.3708,1.0758) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,0.1308,0.9708) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,-2.0805,-0.3792) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1127,4.5188,-0.5294) mvmt=(-0.0006,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1127,4.3129,-0.7625) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.187,93.257) lpos=(-11.113,4.313,-0.762) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.1648,0.8627) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,-0.0752,0.7577) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,-2.2864,-0.5923) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1127,4.3129,-0.7425) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1127,4.3129,-1.5125) mvmt=(-0.0006,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.187,92.507) lpos=(-11.113,4.313,-1.512) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.1648,0.1127) mvmt=(-0.0006,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,-0.0752,0.0077) mvmt=(-0.0006,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3127,-0.0752,0.0077) out=(-0.3127,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.1127,4.3129,-0.7625) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.613,7.187,93.257) lpos=(-11.113,4.313,-0.762) lprev=(-11.112,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2878,0.1648,0.8627) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,-0.0752,0.7577) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3127,-2.2864,-0.5923) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1127,4.3129,-0.7425) mvmt=(-0.0006,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0783,4.5153,-0.5531) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,6.985,93.467) lpos=(-11.078,4.515,-0.553) lprev=(-11.113,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0783,4.5153,-0.5531) mvmt=(0.0345,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.2533,0.3673,1.0721) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,0.1273,0.9671) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-2.0840,-0.3829) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,4.5153,-0.5331) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,4.5153,-0.5531) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,6.985,93.467) lpos=(-11.078,4.515,-0.553) lprev=(-11.113,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0783,4.5153,-0.5531) mvmt=(0.0345,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.2533,0.3673,1.0721) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,0.1273,0.9671) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-2.0840,-0.3829) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,4.5153,-0.5331) mvmt=(0.0345,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,4.3129,-0.7625) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.187,93.257) lpos=(-11.078,4.313,-0.762) lprev=(-11.113,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2533,0.1648,0.8627) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-0.0752,0.7577) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-2.2864,-0.5923) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,4.3129,-0.7425) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,4.3129,-1.5125) mvmt=(0.0345,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.187,92.507) lpos=(-11.078,4.313,-1.512) lprev=(-11.113,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2533,0.1648,0.1127) mvmt=(0.0345,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-0.0752,0.0077) mvmt=(0.0345,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2783,-0.0752,0.0077) out=(-0.2783,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0783,4.3129,-0.7625) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.187,93.257) lpos=(-11.078,4.313,-0.762) lprev=(-11.113,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2533,0.1648,0.8627) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-0.0752,0.7577) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2783,-2.2864,-0.5923) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0783,4.3129,-0.7425) mvmt=(0.0345,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0304,4.5145,-0.5540) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,6.986,93.466) lpos=(-11.030,4.514,-0.554) lprev=(-11.078,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0304,4.5145,-0.5540) mvmt=(0.0478,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=(-1.2054,0.3664,1.0712) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,0.1264,0.9662) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,-2.0848,-0.3838) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0304,4.5145,-0.5340) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0304,4.5145,-0.5540) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,6.986,93.466) lpos=(-11.030,4.514,-0.554) lprev=(-11.078,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0304,4.5145,-0.5540) mvmt=(0.0478,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=(-1.2054,0.3664,1.0712) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,0.1264,0.9662) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,-2.0848,-0.3838) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0304,4.5145,-0.5340) mvmt=(0.0478,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0304,4.3129,-0.7625) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,7.187,93.257) lpos=(-11.030,4.313,-0.762) lprev=(-11.078,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2054,0.1648,0.8627) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,-0.0752,0.7577) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,-2.2864,-0.5923) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0304,4.3129,-0.7425) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0304,4.3129,-1.5125) mvmt=(0.0478,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,7.187,92.507) lpos=(-11.030,4.313,-1.512) lprev=(-11.078,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2054,0.1648,0.1127) mvmt=(0.0478,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,-0.0752,0.0077) mvmt=(0.0478,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2304,-0.0752,0.0077) out=(-0.2304,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0304,4.3129,-0.7625) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.530,7.187,93.257) lpos=(-11.030,4.313,-0.762) lprev=(-11.078,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2054,0.1648,0.8627) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,-0.0752,0.7577) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,-2.2864,-0.5923) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0304,4.3129,-0.7425) mvmt=(0.0478,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9838,4.5094,-0.5593) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.484,6.991,93.461) lpos=(-10.984,4.509,-0.559) lprev=(-11.030,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9838,4.5094,-0.5593) mvmt=(0.0466,0.1965,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.1588,0.3613,1.0659) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,0.1213,0.9609) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,-2.0900,-0.3891) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9838,4.5094,-0.5393) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9838,4.5094,-0.5593) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.484,6.991,93.461) lpos=(-10.984,4.509,-0.559) lprev=(-11.030,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9838,4.5094,-0.5593) mvmt=(0.0466,0.1965,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.1588,0.3613,1.0659) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,0.1213,0.9609) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,-2.0900,-0.3891) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9838,4.5094,-0.5393) mvmt=(0.0466,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9838,4.3129,-0.7625) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.484,7.187,93.257) lpos=(-10.984,4.313,-0.762) lprev=(-11.030,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1588,0.1648,0.8627) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,-0.0752,0.7577) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,-2.2864,-0.5923) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9838,4.3129,-0.7425) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9838,4.3129,-1.5125) mvmt=(0.0466,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.484,7.187,92.507) lpos=(-10.984,4.313,-1.512) lprev=(-11.030,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1588,0.1648,0.1127) mvmt=(0.0466,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,-0.0752,0.0077) mvmt=(0.0466,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1838,-0.0752,0.0077) out=(-0.1838,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9838,4.3129,-0.7625) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.484,7.187,93.257) lpos=(-10.984,4.313,-0.762) lprev=(-11.030,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1588,0.1648,0.8627) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,-0.0752,0.7577) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1838,-2.2864,-0.5923) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9838,4.3129,-0.7425) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9387,4.5029,-0.5659) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,6.997,93.454) lpos=(-10.939,4.503,-0.566) lprev=(-10.984,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9387,4.5029,-0.5659) mvmt=(0.0451,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.1137,0.3549,1.0593) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,0.1149,0.9543) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,-2.0964,-0.3957) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9387,4.5029,-0.5459) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9387,4.5029,-0.5659) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,6.997,93.454) lpos=(-10.939,4.503,-0.566) lprev=(-10.984,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9387,4.5029,-0.5659) mvmt=(0.0451,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.1137,0.3549,1.0593) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,0.1149,0.9543) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,-2.0964,-0.3957) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9387,4.5029,-0.5459) mvmt=(0.0451,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9387,4.3129,-0.7625) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.187,93.257) lpos=(-10.939,4.313,-0.762) lprev=(-10.984,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1137,0.1648,0.8627) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,-0.0752,0.7577) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,-2.2864,-0.5923) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9387,4.3129,-0.7425) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9387,4.3129,-1.5125) mvmt=(0.0451,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.187,92.507) lpos=(-10.939,4.313,-1.512) lprev=(-10.984,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1137,0.1648,0.1127) mvmt=(0.0451,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,-0.0752,0.0077) mvmt=(0.0451,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1387,-0.0752,0.0077) out=(-0.1387,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9387,4.3129,-0.7625) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.187,93.257) lpos=(-10.939,4.313,-0.762) lprev=(-10.984,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1137,0.1648,0.8627) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,-0.0752,0.7577) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1387,-2.2864,-0.5923) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9387,4.3129,-0.7425) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8888,4.5231,-0.5450) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,6.977,93.475) lpos=(-10.889,4.523,-0.545) lprev=(-10.939,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8888,4.5231,-0.5450) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0638,0.3751,1.0802) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,0.1351,0.9752) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,-2.0762,-0.3748) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8888,4.5231,-0.5250) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8888,4.5231,-0.5450) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,6.977,93.475) lpos=(-10.889,4.523,-0.545) lprev=(-10.939,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8888,4.5231,-0.5450) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0638,0.3751,1.0802) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,0.1351,0.9752) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,-2.0762,-0.3748) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8888,4.5231,-0.5250) mvmt=(0.0499,0.2102,0.2175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8888,4.3129,-0.7625) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,7.187,93.257) lpos=(-10.889,4.313,-0.762) lprev=(-10.939,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0638,0.1648,0.8627) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,-0.0752,0.7577) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,-2.2864,-0.5923) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8888,4.3129,-0.7425) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8888,4.3129,-1.5125) mvmt=(0.0499,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,7.187,92.507) lpos=(-10.889,4.313,-1.512) lprev=(-10.939,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0638,0.1648,0.1127) mvmt=(0.0499,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,-0.0752,0.0077) mvmt=(0.0499,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0888,-0.0752,0.0077) out=(-0.0888,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8888,4.3129,-0.7625) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,7.187,93.257) lpos=(-10.889,4.313,-0.762) lprev=(-10.939,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0638,0.1648,0.8627) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,-0.0752,0.7577) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0888,-2.2864,-0.5923) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8888,4.3129,-0.7425) mvmt=(0.0499,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8408,4.5150,-0.5534) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.341,6.985,93.467) lpos=(-10.841,4.515,-0.553) lprev=(-10.889,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8408,4.5150,-0.5534) mvmt=(0.0480,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.0158,0.3670,1.0718) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,0.1270,0.9668) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,-2.0843,-0.3832) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8408,4.5150,-0.5334) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8408,4.5150,-0.5534) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.341,6.985,93.467) lpos=(-10.841,4.515,-0.553) lprev=(-10.889,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8408,4.5150,-0.5534) mvmt=(0.0480,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.0158,0.3670,1.0718) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,0.1270,0.9668) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,-2.0843,-0.3832) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8408,4.5150,-0.5334) mvmt=(0.0480,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8408,4.3129,-0.7625) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.341,7.187,93.257) lpos=(-10.841,4.313,-0.762) lprev=(-10.889,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0158,0.1648,0.8627) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,-0.0752,0.7577) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,-2.2864,-0.5923) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8408,4.3129,-0.7425) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8408,4.3129,-1.5125) mvmt=(0.0480,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.341,7.187,92.507) lpos=(-10.841,4.313,-1.512) lprev=(-10.889,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0158,0.1648,0.1127) mvmt=(0.0480,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,-0.0752,0.0077) mvmt=(0.0480,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0408,-0.0752,0.0077) out=(-0.0408,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8408,4.3129,-0.7625) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.341,7.187,93.257) lpos=(-10.841,4.313,-0.762) lprev=(-10.889,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0158,0.1648,0.8627) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,-0.0752,0.7577) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0408,-2.2864,-0.5923) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8408,4.3129,-0.7425) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7929,4.5150,-0.5535) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.293,6.985,93.467) lpos=(-10.793,4.515,-0.553) lprev=(-10.841,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7929,4.5150,-0.5535) mvmt=(0.0480,0.2021,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.9679,0.3669,1.0717) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,0.1269,0.9667) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,-2.0844,-0.3833) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7929,4.5150,-0.5335) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7929,4.5150,-0.5535) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.293,6.985,93.467) lpos=(-10.793,4.515,-0.553) lprev=(-10.841,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7929,4.5150,-0.5535) mvmt=(0.0480,0.2021,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.9679,0.3669,1.0717) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,0.1269,0.9667) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,-2.0844,-0.3833) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7929,4.5150,-0.5335) mvmt=(0.0480,0.2021,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7929,4.3129,-0.7625) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.293,7.187,93.257) lpos=(-10.793,4.313,-0.762) lprev=(-10.841,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9679,0.1648,0.8627) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,-0.0752,0.7577) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,-2.2864,-0.5923) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7929,4.3129,-0.7425) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7929,4.3129,-1.5125) mvmt=(0.0480,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.293,7.187,92.507) lpos=(-10.793,4.313,-1.512) lprev=(-10.841,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9679,0.1648,0.1127) mvmt=(0.0480,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,-0.0752,0.0077) mvmt=(0.0480,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0071,-0.0752,0.0077) out=(0.0071,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7929,4.3129,-0.7625) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.293,7.187,93.257) lpos=(-10.793,4.313,-0.762) lprev=(-10.841,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9679,0.1648,0.8627) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,-0.0752,0.7577) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0071,-2.2864,-0.5923) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7929,4.3129,-0.7425) mvmt=(0.0480,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7465,4.5081,-0.5606) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,6.992,93.459) lpos=(-10.747,4.508,-0.561) lprev=(-10.793,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7465,4.5081,-0.5606) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9215,0.3600,1.0646) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,0.1200,0.9596) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,-2.0912,-0.3904) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7465,4.5081,-0.5406) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7465,4.5081,-0.5606) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,6.992,93.459) lpos=(-10.747,4.508,-0.561) lprev=(-10.793,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7465,4.5081,-0.5606) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9215,0.3600,1.0646) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,0.1200,0.9596) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,-2.0912,-0.3904) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7465,4.5081,-0.5406) mvmt=(0.0463,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7465,4.3129,-0.7625) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,7.187,93.257) lpos=(-10.747,4.313,-0.762) lprev=(-10.793,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9215,0.1648,0.8627) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,-0.0752,0.7577) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,-2.2864,-0.5923) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7465,4.3129,-0.7425) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7465,4.3129,-1.5125) mvmt=(0.0463,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,7.187,92.507) lpos=(-10.747,4.313,-1.512) lprev=(-10.793,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9215,0.1648,0.1127) mvmt=(0.0463,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,-0.0752,0.0077) mvmt=(0.0463,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0535,-0.0752,0.0077) out=(0.0535,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7465,4.3129,-0.7625) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.247,7.187,93.257) lpos=(-10.747,4.313,-0.762) lprev=(-10.793,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9215,0.1648,0.8627) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,-0.0752,0.7577) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0535,-2.2864,-0.5923) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7465,4.3129,-0.7425) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7002,4.5080,-0.5606) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,6.992,93.459) lpos=(-10.700,4.508,-0.561) lprev=(-10.747,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7002,4.5080,-0.5606) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8752,0.3600,1.0646) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,0.1200,0.9596) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-2.0913,-0.3904) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,4.5080,-0.5406) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,4.5080,-0.5606) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,6.992,93.459) lpos=(-10.700,4.508,-0.561) lprev=(-10.747,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7002,4.5080,-0.5606) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8752,0.3600,1.0646) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,0.1200,0.9596) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-2.0913,-0.3904) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,4.5080,-0.5406) mvmt=(0.0463,0.1951,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,4.3129,-0.7625) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,7.187,93.257) lpos=(-10.700,4.313,-0.762) lprev=(-10.747,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8752,0.1648,0.8627) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-0.0752,0.7577) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-2.2864,-0.5923) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,4.3129,-0.7425) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,4.3129,-1.5125) mvmt=(0.0463,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,7.187,92.507) lpos=(-10.700,4.313,-1.512) lprev=(-10.747,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8752,0.1648,0.1127) mvmt=(0.0463,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-0.0752,0.0077) mvmt=(0.0463,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0998,-0.0752,0.0077) out=(0.0998,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7002,4.3129,-0.7625) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,7.187,93.257) lpos=(-10.700,4.313,-0.762) lprev=(-10.747,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8752,0.1648,0.8627) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-0.0752,0.7577) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-2.2864,-0.5923) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,4.3129,-0.7425) mvmt=(0.0463,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6541,4.5074,-0.5612) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,6.993,93.459) lpos=(-10.654,4.507,-0.561) lprev=(-10.700,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6541,4.5074,-0.5612) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8291,0.3594,1.0640) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,0.1194,0.9590) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,-2.0919,-0.3910) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6541,4.5074,-0.5412) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6541,4.5074,-0.5612) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,6.993,93.459) lpos=(-10.654,4.507,-0.561) lprev=(-10.700,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6541,4.5074,-0.5612) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8291,0.3594,1.0640) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,0.1194,0.9590) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,-2.0919,-0.3910) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6541,4.5074,-0.5412) mvmt=(0.0462,0.1946,0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6541,4.3129,-0.7625) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,7.187,93.257) lpos=(-10.654,4.313,-0.762) lprev=(-10.700,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8291,0.1648,0.8627) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,-0.0752,0.7577) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,-2.2864,-0.5923) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6541,4.3129,-0.7425) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6541,4.3129,-1.5125) mvmt=(0.0462,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,7.187,92.507) lpos=(-10.654,4.313,-1.512) lprev=(-10.700,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8291,0.1648,0.1127) mvmt=(0.0462,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,-0.0752,0.0077) mvmt=(0.0462,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1460,-0.0752,0.0077) out=(0.1460,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6541,4.3129,-0.7625) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,7.187,93.257) lpos=(-10.654,4.313,-0.762) lprev=(-10.700,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8291,0.1648,0.8627) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,-0.0752,0.7577) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1460,-2.2864,-0.5923) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6541,4.3129,-0.7425) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6073,4.5100,-0.5586) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,6.990,93.461) lpos=(-10.607,4.510,-0.559) lprev=(-10.654,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6073,4.5100,-0.5586) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7823,0.3619,1.0666) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,0.1219,0.9616) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.0894,-0.3884) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2333,-2.9450,2.4659) mvmt=(-0.1629,0.1203,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.5100,-0.5386) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.5100,-0.5586) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,6.990,93.461) lpos=(-10.607,4.510,-0.559) lprev=(-10.654,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6073,4.5100,-0.5586) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7823,0.3619,1.0666) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,0.1219,0.9616) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.0894,-0.3884) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2333,-2.9450,2.4659) mvmt=(-0.1629,0.1203,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.5100,-0.5386) mvmt=(0.0468,0.1971,0.2039) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.3129,-0.7625) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.187,93.257) lpos=(-10.607,4.313,-0.762) lprev=(-10.654,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7823,0.1648,0.8627) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-0.0752,0.7577) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.2864,-0.5923) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.3129,-0.7425) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.3129,-1.5125) mvmt=(0.0468,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.187,92.507) lpos=(-10.607,4.313,-1.512) lprev=(-10.654,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7823,0.1648,0.1127) mvmt=(0.0468,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-0.0752,0.0077) mvmt=(0.0468,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1927,-0.0752,0.0077) out=(0.1927,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.6073,4.3129,-0.7625) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.107,7.187,93.257) lpos=(-10.607,4.313,-0.762) lprev=(-10.654,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7823,0.1648,0.8627) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-0.0752,0.7577) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1927,-2.2864,-0.5923) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6073,4.3129,-0.7425) mvmt=(0.0468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5618,4.5046,-0.5642) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,6.995,93.456) lpos=(-10.562,4.505,-0.564) lprev=(-10.607,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5618,4.5046,-0.5642) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7368,0.3566,1.0610) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,0.1166,0.9560) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,-2.0947,-0.3940) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2561,-2.9052,2.4603) mvmt=(-0.1585,0.1171,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5618,4.5046,-0.5442) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5618,4.5046,-0.5642) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,6.995,93.456) lpos=(-10.562,4.505,-0.564) lprev=(-10.607,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5618,4.5046,-0.5642) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7368,0.3566,1.0610) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,0.1166,0.9560) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,-2.0947,-0.3940) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2561,-2.9052,2.4603) mvmt=(-0.1585,0.1171,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5618,4.5046,-0.5442) mvmt=(0.0455,0.1917,0.1983) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5618,4.3129,-0.7625) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.187,93.257) lpos=(-10.562,4.313,-0.762) lprev=(-10.607,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7368,0.1648,0.8627) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,-0.0752,0.7577) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,-2.2864,-0.5923) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5618,4.3129,-0.7425) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5618,4.3129,-1.5125) mvmt=(0.0455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.187,92.507) lpos=(-10.562,4.313,-1.512) lprev=(-10.607,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7368,0.1648,0.1127) mvmt=(0.0455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,-0.0752,0.0077) mvmt=(0.0455,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2382,-0.0752,0.0077) out=(0.2382,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5618,4.3129,-0.7625) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.187,93.257) lpos=(-10.562,4.313,-0.762) lprev=(-10.607,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7368,0.1648,0.8627) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,-0.0752,0.7577) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2382,-2.2864,-0.5923) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5618,4.3129,-0.7425) mvmt=(0.0455,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5156,4.5074,-0.5613) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,6.993,93.459) lpos=(-10.516,4.507,-0.561) lprev=(-10.562,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5156,4.5074,-0.5613) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6906,0.3594,1.0639) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,0.1194,0.9589) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,-2.0919,-0.3911) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2716,-2.8616,2.4632) mvmt=(-0.1608,0.1188,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5156,4.5074,-0.5413) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5156,4.5074,-0.5613) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,6.993,93.459) lpos=(-10.516,4.507,-0.561) lprev=(-10.562,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5156,4.5074,-0.5613) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6906,0.3594,1.0639) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,0.1194,0.9589) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,-2.0919,-0.3911) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2716,-2.8616,2.4632) mvmt=(-0.1608,0.1188,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5156,4.5074,-0.5413) mvmt=(0.0462,0.1945,0.2012) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5156,4.3129,-0.7625) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.187,93.257) lpos=(-10.516,4.313,-0.762) lprev=(-10.562,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6906,0.1648,0.8627) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,-0.0752,0.7577) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,-2.2864,-0.5923) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5156,4.3129,-0.7425) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5156,4.3129,-1.5125) mvmt=(0.0462,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.187,92.507) lpos=(-10.516,4.313,-1.512) lprev=(-10.562,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6906,0.1648,0.1127) mvmt=(0.0462,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,-0.0752,0.0077) mvmt=(0.0462,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2844,-0.0752,0.0077) out=(0.2844,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5156,4.3129,-0.7625) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.016,7.187,93.257) lpos=(-10.516,4.313,-0.762) lprev=(-10.562,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6906,0.1648,0.8627) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,-0.0752,0.7577) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2844,-2.2864,-0.5923) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5156,4.3129,-0.7425) mvmt=(0.0462,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4701,4.5049,-0.5639) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.970,6.995,93.456) lpos=(-10.470,4.505,-0.564) lprev=(-10.516,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4701,4.5049,-0.5639) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6451,0.3568,1.0613) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3299,0.1168,0.9563) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3299,-2.0944,-0.3937) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2918,-2.8207,2.4606) mvmt=(-0.1587,0.1172,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4701,4.5049,-0.5439) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4701,4.5049,-0.5639) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.970,6.995,93.456) lpos=(-10.470,4.505,-0.564) lprev=(-10.516,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4701,4.5049,-0.5639) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6451,0.3568,1.0613) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3299,0.1168,0.9563) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3299,-2.0944,-0.3937) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2918,-2.8207,2.4606) mvmt=(-0.1587,0.1172,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4701,4.5049,-0.5439) mvmt=(0.0456,0.1920,0.1986) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4701,4.3129,-0.7625) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.970,7.187,93.257) lpos=(-10.470,4.313,-0.762) lprev=(-10.516,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6451,0.1648,0.8627) 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.3299,-0.0752,0.7577) 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.3299,-2.2864,-0.5923) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4701,4.3129,-0.7425) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4701,4.3129,-1.5125) mvmt=(0.0456,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.970,7.187,92.507) lpos=(-10.470,4.313,-1.512) lprev=(-10.516,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6451,0.1648,0.1127) 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.3299,-0.0752,0.0077) 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.3299,-0.0752,0.0077) out=(0.3299,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4701,4.3129,-0.7625) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.970,7.187,93.257) lpos=(-10.470,4.313,-0.762) lprev=(-10.516,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6451,0.1648,0.8627) 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.3299,-0.0752,0.7577) 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.3299,-2.2864,-0.5923) mvmt=(0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4701,4.3129,-0.7425) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4234,4.5093,-0.5593) mvmt=(0.0466,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.5093,-0.5593) mvmt=(0.0466,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,6.991,93.461) lpos=(-10.423,4.509,-0.559) lprev=(-10.470,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4234,4.5093,-0.5593) mvmt=(0.0466,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=(-0.5984,0.3613,1.0659) mvmt=(0.0466,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,0.1213,0.9609) mvmt=(0.0466,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-2.0900,-0.3891) mvmt=(0.0466,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3061,-2.7761,2.4652) mvmt=(-0.1624,0.1199,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.5093,-0.5393) mvmt=(0.0466,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,6.991,93.461) lpos=(-10.423,4.509,-0.559) lprev=(-10.470,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4234,4.3129,-0.7625) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,7.187,93.257) lpos=(-10.423,4.313,-0.762) lprev=(-10.470,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5984,0.1648,0.8627) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-0.0752,0.7577) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-2.2864,-0.5923) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.3129,-0.7425) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.3129,-1.5125) mvmt=(0.0466,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,7.187,92.507) lpos=(-10.423,4.313,-1.512) lprev=(-10.470,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5984,0.1648,0.1127) mvmt=(0.0466,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-0.0752,0.0077) mvmt=(0.0466,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3766,-0.0752,0.0077) out=(0.3766,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4234,4.3129,-0.7625) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,7.187,93.257) lpos=(-10.423,4.313,-0.762) lprev=(-10.470,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5984,0.1648,0.8627) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-0.0752,0.7577) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-2.2864,-0.5923) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.3129,-0.7425) mvmt=(0.0466,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3783,4.5031,-0.5658) mvmt=(0.0451,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3783,4.5031,-0.5658) mvmt=(0.0451,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,6.997,93.454) lpos=(-10.378,4.503,-0.566) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3783,4.5031,-0.5658) mvmt=(0.0451,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=(-0.5533,0.3550,1.0594) mvmt=(0.0451,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5533,0.3550,1.0594) out=(-0.5533,0.3550,1.3838) delta=(0.0000,0.0000,0.3244) deltaMag=0.3244 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4593 dpPos=0.2506 dpMove=-0.4243 iDist=0.5407 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.3783,4.5031,-0.2414) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,6.997,93.779) lpos=(-10.378,4.503,-0.241) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3783,4.5031,-0.2414) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[push-back] site=adjust_sphere in=(-10.3783,4.5031,-0.2414) out=(-10.3783,4.5031,-0.2414) 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.4593->0.4593 dpPos=-0.2414 dpMove=-0.2756 iDist=2.6174 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.3783,4.5031,-0.2414) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5533,0.3550,1.3838) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[push-back-disp] site=dispatch center=(0.4217,0.1150,1.2788) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[push-back-disp] site=dispatch center=(0.4217,-2.0962,-0.0712) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[push-back-disp] site=dispatch center=(0.3295,-2.7370,2.7831) mvmt=(-0.1572,0.1161,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[push-back-disp] site=dispatch center=(-10.3783,4.5031,-0.2214) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[push-back-disp] site=dispatch center=(-10.3783,4.5031,-0.2414) mvmt=(0.0451,0.1902,0.5211) collide=False insertType=1 objState=0x303 winterp=0.4593 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,6.997,93.779) lpos=(-10.378,4.503,-0.241) lprev=(-10.423,4.313,-0.762) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,6.997,93.454) lpos=(-10.378,4.503,-0.566) lprev=(-10.423,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3783,4.3129,-0.7625) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,7.187,93.257) lpos=(-10.378,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5533,0.1648,0.8627) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4593 return=-1 +[push-back-disp] site=dispatch center=(-10.3783,4.3129,-0.7625) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,7.187,93.257) lpos=(-10.378,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5533,0.1648,0.8627) mvmt=(0.0451,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5533,0.1648,0.8627) out=(-0.5533,0.1648,1.1937) delta=(0.0000,0.0000,0.3310) deltaMag=0.3310 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4484 dpPos=0.2460 dpMove=-0.4243 iDist=0.5516 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3783,4.3129,-0.4315) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,7.187,93.588) lpos=(-10.378,4.313,-0.432) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3783,4.3129,-0.4315) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 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.3783,4.3129,-0.4315) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5533,0.1648,1.1937) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.4217,-0.0752,1.0887) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.4217,-2.2864,-0.2613) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.5044,-2.8117,2.5930) mvmt=(0.0177,0.0415,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(-10.3783,4.3129,-0.4115) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(-10.3783,4.3129,-0.4315) mvmt=(0.0451,0.0000,0.3310) collide=False insertType=1 objState=0x303 winterp=0.4484 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.878,7.187,93.588) lpos=(-10.378,4.313,-0.432) lprev=(-10.423,4.313,-0.762) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4234,4.5308,-0.4125) mvmt=(0.0000,0.2179,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.5308,-0.4125) mvmt=(0.0000,0.2179,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,6.969,93.608) lpos=(-10.423,4.531,-0.412) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4234,4.5308,-0.4125) mvmt=(0.0000,0.2179,0.3500) 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.4234,4.5308,-0.4125) mvmt=(0.0000,0.2179,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5984,0.3827,1.2127) mvmt=(0.0000,0.2179,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,0.1427,1.1077) mvmt=(0.0000,0.2179,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-2.0685,-0.2423) mvmt=(0.0000,0.2179,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2863,-2.7677,2.6120) mvmt=(-0.2004,0.0855,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.5308,-0.3925) mvmt=(0.0000,0.2179,0.3500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,6.969,93.608) lpos=(-10.423,4.531,-0.412) lprev=(-10.423,4.313,-0.762) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3761,4.5193,-0.4239) mvmt=(0.0473,0.2064,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3761,4.5193,-0.4239) mvmt=(0.0473,0.2064,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,6.981,93.596) lpos=(-10.376,4.519,-0.424) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3761,4.5193,-0.4239) mvmt=(0.0473,0.2064,0.3386) 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.3761,4.5193,-0.4239) mvmt=(0.0473,0.2064,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5511,0.3713,1.2013) mvmt=(0.0473,0.2064,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4239,0.1313,1.0963) mvmt=(0.0473,0.2064,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4239,-2.0800,-0.2537) mvmt=(0.0473,0.2064,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3154,-2.7286,2.6006) mvmt=(-0.1713,0.1245,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3761,4.5193,-0.4039) mvmt=(0.0473,0.2064,0.3386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,6.981,93.596) lpos=(-10.376,4.519,-0.424) lprev=(-10.423,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3761,4.3129,-0.7625) mvmt=(0.0473,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.187,93.257) lpos=(-10.376,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5511,0.1648,0.8627) mvmt=(0.0473,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3761,4.3129,-0.7625) mvmt=(0.0473,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.187,93.257) lpos=(-10.376,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5511,0.1648,0.8627) mvmt=(0.0473,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5511,0.1648,0.8627) out=(-0.5511,0.1648,1.1937) delta=(0.0000,0.0000,0.3310) deltaMag=0.3310 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4484 dpPos=0.2460 dpMove=-0.4243 iDist=0.5516 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3761,4.3129,-0.4315) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.187,93.588) lpos=(-10.376,4.313,-0.432) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3761,4.3129,-0.4315) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 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.3761,4.3129,-0.4315) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5511,0.1648,1.1937) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.4239,-0.0752,1.0887) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.4239,-2.2864,-0.2613) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.5053,-2.8096,2.5930) mvmt=(0.0186,0.0435,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(-10.3761,4.3129,-0.4115) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(-10.3761,4.3129,-0.4315) mvmt=(0.0473,0.0000,0.3310) collide=False insertType=1 objState=0x303 winterp=0.4484 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.876,7.187,93.588) lpos=(-10.376,4.313,-0.432) lprev=(-10.423,4.313,-0.762) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4234,4.5144,-0.4288) mvmt=(0.0000,0.2015,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.5144,-0.4288) mvmt=(0.0000,0.2015,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,6.986,93.591) lpos=(-10.423,4.514,-0.429) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4234,4.5144,-0.4288) mvmt=(0.0000,0.2015,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.4234,4.5144,-0.4288) mvmt=(0.0000,0.2015,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.5984,0.3664,1.1964) mvmt=(0.0000,0.2015,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,0.1264,1.0914) mvmt=(0.0000,0.2015,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3766,-2.0849,-0.2586) mvmt=(0.0000,0.2015,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3013,-2.7741,2.5957) mvmt=(-0.1854,0.0791,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4234,4.5144,-0.4088) mvmt=(0.0000,0.2015,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.923,6.986,93.591) lpos=(-10.423,4.514,-0.429) lprev=(-10.423,4.313,-0.762) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4099,4.5161,-0.4272) mvmt=(0.0135,0.2032,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4099,4.5161,-0.4272) mvmt=(0.0135,0.2032,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,6.984,93.593) lpos=(-10.410,4.516,-0.427) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4099,4.5161,-0.4272) mvmt=(0.0135,0.2032,0.3353) 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.4099,4.5161,-0.4272) mvmt=(0.0135,0.2032,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5849,0.3680,1.1980) mvmt=(0.0135,0.2032,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3901,0.1280,1.0930) mvmt=(0.0135,0.2032,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-2.0832,-0.2570) mvmt=(0.0135,0.2032,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3051,-2.7610,2.5973) mvmt=(-0.1816,0.0922,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4099,4.5161,-0.4072) mvmt=(0.0135,0.2032,0.3353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,6.984,93.593) lpos=(-10.410,4.516,-0.427) lprev=(-10.423,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4099,4.3129,-0.7625) mvmt=(0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.187,93.257) lpos=(-10.410,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5849,0.1648,0.8627) mvmt=(0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4099,4.3129,-0.7625) mvmt=(0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.187,93.257) lpos=(-10.410,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5849,0.1648,0.8627) mvmt=(0.0135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5849,0.1648,0.8627) out=(-0.5849,0.1648,1.1937) delta=(0.0000,0.0000,0.3310) deltaMag=0.3310 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4484 dpPos=0.2460 dpMove=-0.4243 iDist=0.5516 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4099,4.3129,-0.4315) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.187,93.588) lpos=(-10.410,4.313,-0.432) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4099,4.3129,-0.4315) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 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.4099,4.3129,-0.4315) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5849,0.1648,1.1937) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-0.0752,1.0887) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-2.2864,-0.2613) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(0.4920,-2.8407,2.5930) mvmt=(0.0053,0.0124,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(-10.4099,4.3129,-0.4115) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=0 objState=0x303 winterp=0.4484 return=-1 +[push-back-disp] site=dispatch center=(-10.4099,4.3129,-0.4315) mvmt=(0.0135,0.0000,0.3310) collide=False insertType=1 objState=0x303 winterp=0.4484 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.910,7.187,93.588) lpos=(-10.410,4.313,-0.432) lprev=(-10.423,4.313,-0.762) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4431,4.5170,-0.4262) mvmt=(-0.0196,0.2042,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4431,4.5170,-0.4262) mvmt=(-0.0196,0.2042,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,6.983,93.594) lpos=(-10.443,4.517,-0.426) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4431,4.5170,-0.4262) mvmt=(-0.0196,0.2042,0.3363) 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.4431,4.5170,-0.4262) mvmt=(-0.0196,0.2042,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6181,0.3690,1.1990) mvmt=(-0.0196,0.2042,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3569,0.1290,1.0940) mvmt=(-0.0196,0.2042,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3569,-2.0823,-0.2560) mvmt=(-0.0196,0.2042,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2912,-2.7911,2.5983) mvmt=(-0.1955,0.0620,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4431,4.5170,-0.4062) mvmt=(-0.0196,0.2042,0.3363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,6.983,93.594) lpos=(-10.443,4.517,-0.426) lprev=(-10.423,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4431,4.3129,-0.7625) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,7.187,93.257) lpos=(-10.443,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6181,0.1648,0.8627) 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.3569,-0.0752,0.7577) 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.3569,-2.2864,-0.5923) 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.4431,4.3129,-0.7425) 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.4431,4.3129,-1.5125) mvmt=(-0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,7.187,92.507) lpos=(-10.443,4.313,-1.512) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6181,0.1648,0.1127) 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.3569,-0.0752,0.0077) 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.3569,-0.0752,0.0077) out=(0.3569,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=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.4431,4.3129,-0.7625) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.943,7.187,93.257) lpos=(-10.443,4.313,-0.762) lprev=(-10.423,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6181,0.1648,0.8627) 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.3569,-0.0752,0.7577) 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.3569,-2.2864,-0.5923) 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.4431,4.3129,-0.7425) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4951,4.5072,-0.5615) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.995,6.993,93.459) lpos=(-10.495,4.507,-0.561) lprev=(-10.443,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4951,4.5072,-0.5615) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6701,0.3591,1.0637) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,0.1191,0.9587) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,-2.0921,-0.3913) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2799,-2.8429,2.4630) mvmt=(-0.1991,0.0284,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4951,4.5072,-0.5415) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4951,4.5072,-0.5615) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.995,6.993,93.459) lpos=(-10.495,4.507,-0.561) lprev=(-10.443,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4951,4.5072,-0.5615) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6701,0.3591,1.0637) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,0.1191,0.9587) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,-2.0921,-0.3913) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2799,-2.8429,2.4630) mvmt=(-0.1991,0.0284,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4951,4.5072,-0.5415) mvmt=(-0.0520,0.1943,0.2010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4951,4.3129,-0.7625) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.995,7.187,93.257) lpos=(-10.495,4.313,-0.762) lprev=(-10.443,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6701,0.1648,0.8627) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,-0.0752,0.7577) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,-2.2864,-0.5923) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4951,4.3129,-0.7425) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4951,4.3129,-1.5125) mvmt=(-0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.995,7.187,92.507) lpos=(-10.495,4.313,-1.512) lprev=(-10.443,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6701,0.1648,0.1127) mvmt=(-0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,-0.0752,0.0077) mvmt=(-0.0520,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3049,-0.0752,0.0077) out=(0.3049,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.4951,4.3129,-0.7625) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.995,7.187,93.257) lpos=(-10.495,4.313,-0.762) lprev=(-10.443,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6701,0.1648,0.8627) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,-0.0752,0.7577) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3049,-2.2864,-0.5923) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4951,4.3129,-0.7425) mvmt=(-0.0520,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5780,4.5023,-0.5666) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,6.998,93.453) lpos=(-10.578,4.502,-0.567) lprev=(-10.495,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5780,4.5023,-0.5666) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7530,0.3542,1.0586) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,0.1142,0.9536) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,-2.0971,-0.3964) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2519,-2.9210,2.4579) mvmt=(-0.2067,-0.0019,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5780,4.5023,-0.5466) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5780,4.5023,-0.5666) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,6.998,93.453) lpos=(-10.578,4.502,-0.567) lprev=(-10.495,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5780,4.5023,-0.5666) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7530,0.3542,1.0586) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,0.1142,0.9536) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,-2.0971,-0.3964) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2519,-2.9210,2.4579) mvmt=(-0.2067,-0.0019,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5780,4.5023,-0.5466) mvmt=(-0.0829,0.1894,0.1959) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5780,4.3129,-0.7625) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.187,93.257) lpos=(-10.578,4.313,-0.762) lprev=(-10.495,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7530,0.1648,0.8627) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,-0.0752,0.7577) mvmt=(-0.0829,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,-2.2864,-0.5923) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5780,4.3129,-0.7425) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5780,4.3129,-1.5125) mvmt=(-0.0829,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.187,92.507) lpos=(-10.578,4.313,-1.512) lprev=(-10.495,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7530,0.1648,0.1127) mvmt=(-0.0829,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,-0.0752,0.0077) mvmt=(-0.0829,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2220,-0.0752,0.0077) out=(0.2220,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.5780,4.3129,-0.7625) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.187,93.257) lpos=(-10.578,4.313,-0.762) lprev=(-10.495,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7530,0.1648,0.8627) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,-0.0752,0.7577) mvmt=(-0.0829,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2220,-2.2864,-0.5923) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5780,4.3129,-0.7425) mvmt=(-0.0829,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7052,4.5148,-0.5536) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,6.985,93.466) lpos=(-10.705,4.515,-0.554) lprev=(-10.578,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7052,4.5148,-0.5536) mvmt=(-0.1272,0.2019,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.8802,0.3668,1.0716) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,0.1268,0.9666) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,-2.0845,-0.3834) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-3.0331,2.4709) mvmt=(-0.2356,-0.0377,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7052,4.5148,-0.5336) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7052,4.5148,-0.5536) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,6.985,93.466) lpos=(-10.705,4.515,-0.554) lprev=(-10.578,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7052,4.5148,-0.5536) mvmt=(-0.1272,0.2019,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.8802,0.3668,1.0716) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,0.1268,0.9666) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,-2.0845,-0.3834) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-3.0331,2.4709) mvmt=(-0.2356,-0.0377,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7052,4.5148,-0.5336) mvmt=(-0.1272,0.2019,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7052,4.3129,-0.7625) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.187,93.257) lpos=(-10.705,4.313,-0.762) lprev=(-10.578,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8802,0.1648,0.8627) mvmt=(-0.1272,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,-0.0752,0.7577) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,-2.2864,-0.5923) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7052,4.3129,-0.7425) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7052,4.3129,-1.5125) mvmt=(-0.1272,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.187,92.507) lpos=(-10.705,4.313,-1.512) lprev=(-10.578,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8802,0.1648,0.1127) mvmt=(-0.1272,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,-0.0752,0.0077) mvmt=(-0.1272,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0948,-0.0752,0.0077) out=(0.0948,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.7052,4.3129,-0.7625) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.187,93.257) lpos=(-10.705,4.313,-0.762) lprev=(-10.578,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8802,0.1648,0.8627) mvmt=(-0.1272,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,-0.0752,0.7577) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0948,-2.2864,-0.5923) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7052,4.3129,-0.7425) mvmt=(-0.1272,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8266,4.5058,-0.5629) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.327,6.994,93.457) lpos=(-10.827,4.506,-0.563) lprev=(-10.705,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8266,4.5058,-0.5629) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0016,0.3578,1.0623) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,0.1178,0.9573) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,-2.0935,-0.3927) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8266,4.5058,-0.5429) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8266,4.5058,-0.5629) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.327,6.994,93.457) lpos=(-10.827,4.506,-0.563) lprev=(-10.705,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8266,4.5058,-0.5629) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0016,0.3578,1.0623) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,0.1178,0.9573) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,-2.0935,-0.3927) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8266,4.5058,-0.5429) mvmt=(-0.1215,0.1929,0.1996) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8266,4.3129,-0.7625) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.327,7.187,93.257) lpos=(-10.827,4.313,-0.762) lprev=(-10.705,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0016,0.1648,0.8627) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,-0.0752,0.7577) mvmt=(-0.1215,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,-2.2864,-0.5923) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8266,4.3129,-0.7425) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8266,4.3129,-1.5125) mvmt=(-0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.327,7.187,92.507) lpos=(-10.827,4.313,-1.512) lprev=(-10.705,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0016,0.1648,0.1127) mvmt=(-0.1215,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,-0.0752,0.0077) mvmt=(-0.1215,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0266,-0.0752,0.0077) out=(-0.0266,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.8266,4.3129,-0.7625) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.327,7.187,93.257) lpos=(-10.827,4.313,-0.762) lprev=(-10.705,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0016,0.1648,0.8627) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,-0.0752,0.7577) mvmt=(-0.1215,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0266,-2.2864,-0.5923) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8266,4.3129,-0.7425) mvmt=(-0.1215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9462,4.5028,-0.5660) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,6.997,93.454) lpos=(-10.946,4.503,-0.566) lprev=(-10.827,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9462,4.5028,-0.5660) mvmt=(-0.1196,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.1212,0.3548,1.0592) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,0.1148,0.9542) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.0965,-0.3958) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.5028,-0.5460) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.5028,-0.5660) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,6.997,93.454) lpos=(-10.946,4.503,-0.566) lprev=(-10.827,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9462,4.5028,-0.5660) mvmt=(-0.1196,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.1212,0.3548,1.0592) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,0.1148,0.9542) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.0965,-0.3958) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.5028,-0.5460) mvmt=(-0.1196,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3129,-0.7625) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,7.187,93.257) lpos=(-10.946,4.313,-0.762) lprev=(-10.827,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1212,0.1648,0.8627) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-0.0752,0.7577) mvmt=(-0.1196,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.2864,-0.5923) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3129,-0.7425) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3129,-1.5125) mvmt=(-0.1196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,7.187,92.507) lpos=(-10.946,4.313,-1.512) lprev=(-10.827,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1212,0.1648,0.1127) mvmt=(-0.1196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-0.0752,0.0077) mvmt=(-0.1196,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1462,-0.0752,0.0077) out=(-0.1462,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.9462,4.3129,-0.7625) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.446,7.187,93.257) lpos=(-10.946,4.313,-0.762) lprev=(-10.827,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1212,0.1648,0.8627) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-0.0752,0.7577) mvmt=(-0.1196,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1462,-2.2864,-0.5923) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9462,4.3129,-0.7425) mvmt=(-0.1196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0742,4.5162,-0.5522) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.984,93.468) lpos=(-11.074,4.516,-0.552) lprev=(-10.946,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5162,-0.5522) mvmt=(-0.1280,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.2492,0.3681,1.0730) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1281,0.9680) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0831,-0.3820) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5162,-0.5322) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5162,-0.5522) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.984,93.468) lpos=(-11.074,4.516,-0.552) lprev=(-10.946,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5162,-0.5522) mvmt=(-0.1280,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.2492,0.3681,1.0730) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1281,0.9680) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0831,-0.3820) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5162,-0.5322) mvmt=(-0.1280,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.3129,-0.7625) mvmt=(-0.1280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.187,93.257) lpos=(-11.074,4.313,-0.762) lprev=(-10.946,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2492,0.1648,0.8627) mvmt=(-0.1280,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-0.0752,0.7577) mvmt=(-0.1280,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.2864,-0.5923) mvmt=(-0.1280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.3129,-0.7425) mvmt=(-0.1280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.3129,-1.5125) mvmt=(-0.1280,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.187,92.507) lpos=(-11.074,4.313,-1.512) lprev=(-10.946,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2492,0.1648,0.1127) mvmt=(-0.1280,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-0.0752,0.0077) mvmt=(-0.1280,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2742,-0.0752,0.0077) out=(-0.2742,-0.0752,0.7577) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.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.0742,4.3129,-0.7625) mvmt=(-0.1280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.187,93.257) lpos=(-11.074,4.313,-0.762) lprev=(-10.946,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2492,0.1648,0.8627) mvmt=(-0.1280,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-0.0752,0.7577) mvmt=(-0.1280,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.2864,-0.5923) mvmt=(-0.1280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.3129,-0.7425) mvmt=(-0.1280,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1925,4.5008,-0.5681) mvmt=(-0.1183,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1925,4.5008,-0.5681) mvmt=(-0.1183,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.999,93.452) lpos=(-11.193,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1925,4.5008,-0.5681) mvmt=(-0.1183,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3675,0.3528,1.0571) mvmt=(-0.1183,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3925,0.1128,0.9521) mvmt=(-0.1183,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3925,-2.0985,-0.3979) mvmt=(-0.1183,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1925,4.5008,-0.5481) mvmt=(-0.1183,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.999,93.452) lpos=(-11.193,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5008,-0.5681) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.999,93.452) lpos=(-11.074,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5008,-0.5681) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3528,1.0571) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1128,0.9521) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0985,-0.3979) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5008,-0.5481) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5008,-0.5681) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.999,93.452) lpos=(-11.074,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5008,-0.5681) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3528,1.0571) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1128,0.9521) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0985,-0.3979) mvmt=(0.0000,0.1879,0.1944) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5008,-0.5481) mvmt=(0.0000,0.1879,0.1944) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1893,4.4957,-0.5734) mvmt=(-0.1151,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1893,4.4957,-0.5734) mvmt=(-0.1151,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.689,7.004,93.447) lpos=(-11.189,4.496,-0.573) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1893,4.4957,-0.5734) mvmt=(-0.1151,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3643,0.3477,1.0518) mvmt=(-0.1151,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3893,0.1077,0.9468) mvmt=(-0.1151,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3893,-2.1036,-0.4032) mvmt=(-0.1151,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1893,4.4957,-0.5534) mvmt=(-0.1151,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.689,7.004,93.447) lpos=(-11.189,4.496,-0.573) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.4957,-0.5734) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.004,93.447) lpos=(-11.074,4.496,-0.573) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.4957,-0.5734) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3477,1.0518) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1077,0.9468) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.1036,-0.4032) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.4957,-0.5534) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.4957,-0.5734) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.004,93.447) lpos=(-11.074,4.496,-0.573) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.4957,-0.5734) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3477,1.0518) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1077,0.9468) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.1036,-0.4032) mvmt=(0.0000,0.1828,0.1891) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.4957,-0.5534) mvmt=(0.0000,0.1828,0.1891) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1902,4.4971,-0.5720) mvmt=(-0.1160,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1902,4.4971,-0.5720) mvmt=(-0.1160,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.690,7.003,93.448) lpos=(-11.190,4.497,-0.572) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1902,4.4971,-0.5720) mvmt=(-0.1160,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3652,0.3490,1.0532) mvmt=(-0.1160,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3902,0.1090,0.9482) mvmt=(-0.1160,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3902,-2.1022,-0.4018) mvmt=(-0.1160,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1902,4.4971,-0.5520) mvmt=(-0.1160,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.690,7.003,93.448) lpos=(-11.190,4.497,-0.572) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.4971,-0.5720) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.003,93.448) lpos=(-11.074,4.497,-0.572) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.4971,-0.5720) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3490,1.0532) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1090,0.9482) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.1022,-0.4018) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.4971,-0.5520) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.4971,-0.5720) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,7.003,93.448) lpos=(-11.074,4.497,-0.572) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.4971,-0.5720) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3490,1.0532) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1090,0.9482) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.1022,-0.4018) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.4971,-0.5520) mvmt=(0.0000,0.1842,0.1905) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1942,4.5034,-0.5654) mvmt=(-0.1199,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1942,4.5034,-0.5654) mvmt=(-0.1199,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.694,6.997,93.455) lpos=(-11.194,4.503,-0.565) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1942,4.5034,-0.5654) mvmt=(-0.1199,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.3692,0.3554,1.0598) mvmt=(-0.1199,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3942,0.1154,0.9548) mvmt=(-0.1199,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3942,-2.0959,-0.3952) mvmt=(-0.1199,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1942,4.5034,-0.5454) mvmt=(-0.1199,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.694,6.997,93.455) lpos=(-11.194,4.503,-0.565) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5034,-0.5654) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.997,93.455) lpos=(-11.074,4.503,-0.565) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5034,-0.5654) mvmt=(0.0000,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.2492,0.3554,1.0598) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1154,0.9548) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0959,-0.3952) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5034,-0.5454) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5034,-0.5654) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.997,93.455) lpos=(-11.074,4.503,-0.565) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5034,-0.5654) mvmt=(0.0000,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.2492,0.3554,1.0598) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1154,0.9548) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0959,-0.3952) mvmt=(0.0000,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5034,-0.5454) mvmt=(0.0000,0.1905,0.1971) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1988,4.5108,-0.5578) mvmt=(-0.1246,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1988,4.5108,-0.5578) mvmt=(-0.1246,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.699,6.989,93.462) lpos=(-11.199,4.511,-0.558) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1988,4.5108,-0.5578) mvmt=(-0.1246,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3738,0.3627,1.0674) mvmt=(-0.1246,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3988,0.1227,0.9624) mvmt=(-0.1246,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3988,-2.0885,-0.3876) mvmt=(-0.1246,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1988,4.5108,-0.5378) mvmt=(-0.1246,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.699,6.989,93.462) lpos=(-11.199,4.511,-0.558) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5108,-0.5578) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.989,93.462) lpos=(-11.074,4.511,-0.558) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5108,-0.5578) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3627,1.0674) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1227,0.9624) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0885,-0.3876) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5108,-0.5378) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5108,-0.5578) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.989,93.462) lpos=(-11.074,4.511,-0.558) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5108,-0.5578) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3627,1.0674) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1227,0.9624) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0885,-0.3876) mvmt=(0.0000,0.1979,0.2047) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5108,-0.5378) mvmt=(0.0000,0.1979,0.2047) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1969,4.5078,-0.5609) mvmt=(-0.1227,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1969,4.5078,-0.5609) mvmt=(-0.1227,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.697,6.992,93.459) lpos=(-11.197,4.508,-0.561) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1969,4.5078,-0.5609) mvmt=(-0.1227,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=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.3597,1.0643) mvmt=(-0.1227,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3969,0.1197,0.9593) mvmt=(-0.1227,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3969,-2.0915,-0.3907) mvmt=(-0.1227,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1969,4.5078,-0.5409) mvmt=(-0.1227,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.697,6.992,93.459) lpos=(-11.197,4.508,-0.561) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5078,-0.5609) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.992,93.459) lpos=(-11.074,4.508,-0.561) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5078,-0.5609) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3597,1.0643) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1197,0.9593) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0915,-0.3907) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5078,-0.5409) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5078,-0.5609) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.992,93.459) lpos=(-11.074,4.508,-0.561) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5078,-0.5609) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3597,1.0643) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1197,0.9593) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0915,-0.3907) mvmt=(0.0000,0.1949,0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5078,-0.5409) mvmt=(0.0000,0.1949,0.2016) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1961,4.5064,-0.5623) mvmt=(-0.1219,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1961,4.5064,-0.5623) mvmt=(-0.1219,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.696,6.994,93.458) lpos=(-11.196,4.506,-0.562) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1961,4.5064,-0.5623) mvmt=(-0.1219,0.1935,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.3711,0.3584,1.0629) mvmt=(-0.1219,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3961,0.1184,0.9579) mvmt=(-0.1219,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3961,-2.0929,-0.3921) mvmt=(-0.1219,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1961,4.5064,-0.5423) mvmt=(-0.1219,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.696,6.994,93.458) lpos=(-11.196,4.506,-0.562) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5064,-0.5623) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.994,93.458) lpos=(-11.074,4.506,-0.562) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5064,-0.5623) mvmt=(0.0000,0.1935,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.2492,0.3584,1.0629) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1184,0.9579) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0929,-0.3921) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5064,-0.5423) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5064,-0.5623) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.994,93.458) lpos=(-11.074,4.506,-0.562) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5064,-0.5623) mvmt=(0.0000,0.1935,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.2492,0.3584,1.0629) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1184,0.9579) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0929,-0.3921) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5064,-0.5423) mvmt=(0.0000,0.1935,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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1982,4.5098,-0.5588) mvmt=(-0.1240,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1982,4.5098,-0.5588) mvmt=(-0.1240,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.698,6.990,93.461) lpos=(-11.198,4.510,-0.559) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1982,4.5098,-0.5588) mvmt=(-0.1240,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.3732,0.3618,1.0664) mvmt=(-0.1240,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3982,0.1218,0.9614) mvmt=(-0.1240,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3982,-2.0895,-0.3886) mvmt=(-0.1240,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1982,4.5098,-0.5388) mvmt=(-0.1240,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.698,6.990,93.461) lpos=(-11.198,4.510,-0.559) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5098,-0.5588) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.990,93.461) lpos=(-11.074,4.510,-0.559) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5098,-0.5588) mvmt=(0.0000,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.2492,0.3618,1.0664) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1218,0.9614) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0895,-0.3886) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5098,-0.5388) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5098,-0.5588) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.990,93.461) lpos=(-11.074,4.510,-0.559) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5098,-0.5588) mvmt=(0.0000,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.2492,0.3618,1.0664) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1218,0.9614) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0895,-0.3886) mvmt=(0.0000,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5098,-0.5388) mvmt=(0.0000,0.1969,0.2037) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1929,4.5013,-0.5676) mvmt=(-0.1186,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1929,4.5013,-0.5676) mvmt=(-0.1186,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.999,93.452) lpos=(-11.193,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1929,4.5013,-0.5676) mvmt=(-0.1186,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3679,0.3533,1.0576) mvmt=(-0.1186,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3929,0.1133,0.9526) mvmt=(-0.1186,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3929,-2.0980,-0.3974) mvmt=(-0.1186,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1929,4.5013,-0.5476) mvmt=(-0.1186,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.999,93.452) lpos=(-11.193,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5013,-0.5676) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.999,93.452) lpos=(-11.074,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5013,-0.5676) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3533,1.0576) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1133,0.9526) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0980,-0.3974) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5013,-0.5476) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5013,-0.5676) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.999,93.452) lpos=(-11.074,4.501,-0.568) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5013,-0.5676) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3533,1.0576) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1133,0.9526) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0980,-0.3974) mvmt=(0.0000,0.1884,0.1949) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5013,-0.5476) mvmt=(0.0000,0.1884,0.1949) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2003,4.5132,-0.5553) mvmt=(-0.1261,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2003,4.5132,-0.5553) mvmt=(-0.1261,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.700,6.987,93.465) lpos=(-11.200,4.513,-0.555) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2003,4.5132,-0.5553) mvmt=(-0.1261,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3753,0.3651,1.0699) mvmt=(-0.1261,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4003,0.1251,0.9649) mvmt=(-0.1261,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4003,-2.0862,-0.3851) mvmt=(-0.1261,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2003,4.5132,-0.5353) mvmt=(-0.1261,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.700,6.987,93.465) lpos=(-11.200,4.513,-0.555) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5132,-0.5553) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.987,93.465) lpos=(-11.074,4.513,-0.555) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5132,-0.5553) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3651,1.0699) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1251,0.9649) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0862,-0.3851) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5132,-0.5353) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5132,-0.5553) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.987,93.465) lpos=(-11.074,4.513,-0.555) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5132,-0.5553) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3651,1.0699) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1251,0.9649) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0862,-0.3851) mvmt=(0.0000,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5132,-0.5353) mvmt=(0.0000,0.2003,0.2072) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1937,4.5027,-0.5662) mvmt=(-0.1195,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1937,4.5027,-0.5662) mvmt=(-0.1195,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.694,6.997,93.454) lpos=(-11.194,4.503,-0.566) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1937,4.5027,-0.5662) mvmt=(-0.1195,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3687,0.3546,1.0590) mvmt=(-0.1195,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3937,0.1146,0.9540) mvmt=(-0.1195,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3937,-2.0967,-0.3960) mvmt=(-0.1195,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1937,4.5027,-0.5462) mvmt=(-0.1195,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.694,6.997,93.454) lpos=(-11.194,4.503,-0.566) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5027,-0.5662) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.997,93.454) lpos=(-11.074,4.503,-0.566) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5027,-0.5662) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3546,1.0590) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1146,0.9540) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0967,-0.3960) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5027,-0.5462) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5027,-0.5662) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.997,93.454) lpos=(-11.074,4.503,-0.566) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5027,-0.5662) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3546,1.0590) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1146,0.9540) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0967,-0.3960) mvmt=(0.0000,0.1898,0.1963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5027,-0.5462) mvmt=(0.0000,0.1898,0.1963) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1977,4.5090,-0.5596) mvmt=(-0.1235,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1977,4.5090,-0.5596) mvmt=(-0.1235,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.698,6.991,93.460) lpos=(-11.198,4.509,-0.560) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1977,4.5090,-0.5596) mvmt=(-0.1235,0.1961,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.3727,0.3609,1.0656) mvmt=(-0.1235,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3977,0.1209,0.9606) mvmt=(-0.1235,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3977,-2.0903,-0.3895) mvmt=(-0.1235,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1977,4.5090,-0.5396) mvmt=(-0.1235,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.698,6.991,93.460) lpos=(-11.198,4.509,-0.560) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5090,-0.5596) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.991,93.460) lpos=(-11.074,4.509,-0.560) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5090,-0.5596) mvmt=(0.0000,0.1961,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.2492,0.3609,1.0656) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1209,0.9606) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0903,-0.3895) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5090,-0.5396) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5090,-0.5596) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.991,93.460) lpos=(-11.074,4.509,-0.560) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5090,-0.5596) mvmt=(0.0000,0.1961,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.2492,0.3609,1.0656) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1209,0.9606) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0903,-0.3895) mvmt=(0.0000,0.1961,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5090,-0.5396) mvmt=(0.0000,0.1961,0.2029) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1931,4.5018,-0.5671) mvmt=(-0.1189,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1931,4.5018,-0.5671) mvmt=(-0.1189,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.998,93.453) lpos=(-11.193,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1931,4.5018,-0.5671) mvmt=(-0.1189,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3681,0.3537,1.0581) mvmt=(-0.1189,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3931,0.1137,0.9531) mvmt=(-0.1189,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3931,-2.0975,-0.3969) mvmt=(-0.1189,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1931,4.5018,-0.5471) mvmt=(-0.1189,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.998,93.453) lpos=(-11.193,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5018,-0.5671) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.998,93.453) lpos=(-11.074,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5018,-0.5671) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3537,1.0581) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1137,0.9531) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0975,-0.3969) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5018,-0.5471) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5018,-0.5671) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.998,93.453) lpos=(-11.074,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5018,-0.5671) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3537,1.0581) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1137,0.9531) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0975,-0.3969) mvmt=(0.0000,0.1889,0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5018,-0.5471) mvmt=(0.0000,0.1889,0.1954) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1930,4.5016,-0.5673) mvmt=(-0.1188,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1930,4.5016,-0.5673) mvmt=(-0.1188,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.998,93.453) lpos=(-11.193,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1930,4.5016,-0.5673) mvmt=(-0.1188,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3680,0.3535,1.0579) mvmt=(-0.1188,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3930,0.1135,0.9529) mvmt=(-0.1188,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3930,-2.0977,-0.3971) mvmt=(-0.1188,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1930,4.5016,-0.5473) mvmt=(-0.1188,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.693,6.998,93.453) lpos=(-11.193,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5016,-0.5673) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.998,93.453) lpos=(-11.074,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5016,-0.5673) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3535,1.0579) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1135,0.9529) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0977,-0.3971) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5016,-0.5473) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5016,-0.5673) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.998,93.453) lpos=(-11.074,4.502,-0.567) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5016,-0.5673) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2492,0.3535,1.0579) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,0.1135,0.9529) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2742,-2.0977,-0.3971) mvmt=(0.0000,0.1887,0.1952) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0742,4.5016,-0.5473) mvmt=(0.0000,0.1887,0.1952) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1951,4.5049,-0.5638) mvmt=(-0.1209,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1951,4.5049,-0.5638) mvmt=(-0.1209,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.695,6.995,93.456) lpos=(-11.195,4.505,-0.564) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1951,4.5049,-0.5638) mvmt=(-0.1209,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.3701,0.3569,1.0614) mvmt=(-0.1209,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3951,0.1169,0.9564) mvmt=(-0.1209,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3951,-2.0944,-0.3936) mvmt=(-0.1209,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1951,4.5049,-0.5438) mvmt=(-0.1209,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.695,6.995,93.456) lpos=(-11.195,4.505,-0.564) lprev=(-11.074,4.313,-0.762) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5049,-0.5638) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.995,93.456) lpos=(-11.074,4.505,-0.564) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5049,-0.5638) 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.2492,0.3569,1.0614) 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.2742,0.1169,0.9564) 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.2742,-2.0944,-0.3936) 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.0742,4.5049,-0.5438) 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.0742,4.5049,-0.5638) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.574,6.995,93.456) lpos=(-11.074,4.505,-0.564) lprev=(-11.074,4.313,-0.762) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0742,4.5049,-0.5638) 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.2492,0.3569,1.0614) 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.2742,0.1169,0.9564) 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.2742,-2.0944,-0.3936) 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.0742,4.5049,-0.5438) 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:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:667 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:667 +[12:05:54 INF] smoke plugin disabled (saw 10945 entities total)